12345678910111213141516171819202122 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class BluetoothGateModel : ListModel<BluetoothGateModel, BluetoothGateShell, JobTracker>
- {
- public BluetoothGateModel(IModelHost host, Func<Filter<JobTracker>> filter, bool transient = false) : base((IModelHost)host, filter, transient)
- {
- new BluetoothGateShell();
- }
- public BluetoothGateModel(IModelHost host, Func<Filter<JobTracker>> filter, [NotNull] string filename) : base((IModelHost)host, filter, filename)
- {
- new BluetoothGateShell();
- }
- // public override Columns<(.+)> Columns => BluetoothGateShell.Columns.Columns;
- }
- }
|