BluetoothGateModel.cs 748 B

12345678910111213141516171819202122
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. namespace comal.timesheets
  6. {
  7. public class BluetoothGateModel : ListModel<BluetoothGateModel, BluetoothGateShell, JobTracker>
  8. {
  9. public BluetoothGateModel(IModelHost host, Func<Filter<JobTracker>> filter, bool transient = false) : base((IModelHost)host, filter, transient)
  10. {
  11. new BluetoothGateShell();
  12. }
  13. public BluetoothGateModel(IModelHost host, Func<Filter<JobTracker>> filter, [NotNull] string filename) : base((IModelHost)host, filter, filename)
  14. {
  15. new BluetoothGateShell();
  16. }
  17. // public override Columns<(.+)> Columns => BluetoothGateShell.Columns.Columns;
  18. }
  19. }