using System; using Comal.Classes; namespace comal.timesheets { public class DeliveryDetailItemShell : DetailShell { static DeliveryDetailItemShell() { Columns .Map(nameof(Description), x => x.Description) .Map(nameof(Setout), x => x.ManufacturingPacketLink.SetoutLink.Number) .Map(nameof(Rack), x => x.ShipmentLink.Code) .Map(nameof(Requi), x => x.RequisitionLink.Number); } public String Description => Get(); public string Setout => Get(); public string Rack => Get(); public int Requi => Get(); } }