using System; using Comal.Classes; using Xamarin.Forms; namespace comal.timesheets { public class ProductGroupLookupShell : LookupShell { static ProductGroupLookupShell() { Columns .Map(nameof(ID), x => x.ID) .Map(nameof(Code), x => x.Code) .Map(nameof(Description), x => x.Description); } public override Guid ID => Get(); public override string Code => Get(); public override string Description => Get(); } }