using System; using System.Linq; using System.Linq.Expressions; using Comal.Classes; using InABox.Core; using System.Diagnostics.CodeAnalysis; using InABox.Mobile; namespace PRS.Mobile { public class EmployeeDetailModel : CoreRepository { public EmployeeDetailModel(IModelHost host, Func>? filter = null, Func? cachefilename = null) : base(host, filter, cachefilename) { } } }