using System; using Comal.Classes; namespace comal.timesheets { public class AssignmentFormShell : DetailShell, IDigitalFormInstanceShell { static AssignmentFormShell() { Columns .Map(nameof(ID), x => x.ID) .Map(nameof(FormID), x => x.Form.ID) .Map(nameof(Code), x => x.Form.Code) .Map(nameof(Description), x => x.Form.Description) .Map(nameof(Completed), x => x.FormCompleted); } public Guid ID => Get(); public Guid FormID => Get(); public String Code => Get(); public String Description => Get(); public DateTime Completed => Get(); } }