using System; using System.IO; using System.Linq; using System.Linq.Expressions; using Comal.Classes; using InABox.Core; using System.Diagnostics.CodeAnalysis; using InABox.Mobile; using Xamarin.Forms; namespace PRS.Mobile { public class EmployeeModel : CoreRepository { public EmployeeModel(IModelHost host, Func>? filter = null, Func? cachefilename = null) : base(host, filter, cachefilename) { } protected override Expression> ImageColumn => x => x.Thumbnail.ID; } }