12345678910111213141516 |
- using System;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class JobModel : CoreRepository<JobModel, JobShell, Job>
- {
- public JobModel(IModelHost host, Func<Filter<Job>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- }
- }
|