| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.IO;
- using System.Linq;
- using System.Linq.Expressions;
- using Comal.Classes;
- using InABox.Clients;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using Xamarin.Forms;
- namespace comal.timesheets
- {
- public class EmployeeModel : ListModel<EmployeeModel,EmployeeShell,Employee>
- {
- public EmployeeModel(IModelHost host, Func<Filter<Employee>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public EmployeeModel(IModelHost host, Func<Filter<Employee>> filter, [NotNull] String filename) : base(host, filter, filename)
- {
- }
- // public override Columns<(.+)> Columns => EmployeeShell.Columns.Columns;
- protected override Expression<Func<Employee, object>> ImageColumn => x => x.Thumbnail.ID;
-
- }
- }
|