| 1234567891011121314151617181920212223 | using System;using Comal.Classes;namespace comal.timesheets{    public class DeliveryDetailItemShell : DetailShell<DeliveryDetailModel, DeliveryItem>    {        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<String>();        public string Setout => Get<String>();        public string Rack => Get<String>();        public int Requi => Get<int>();    }}
 |