| 123456789101112131415 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class BluetoothGateModel : CoreRepository<BluetoothGateModel, BluetoothGateShell, JobTracker>
- {
- public BluetoothGateModel(IModelHost host, Func<Filter<JobTracker>> filter) : base(host, filter)
- {
- }
- }
- }
|