| 1234567891011121314151617 | using System;using System.Collections.Generic;using InABox.Core;namespace Comal.Classes{    public class AttendanceDataModel : BaseDataModel<Employee>    {        public AttendanceDataModel(Filter<Employee> filter) : base(filter)        {            AddChildTable<Employee, TimeSheet>(x => x.ID, x => x.EmployeeLink.ID, new Filter<TimeSheet>(x => x.Date).IsEqualTo(DateTime.Today));        }        public override string Name => "Attendance";    }}
 |