| 1234567891011121314151617181920212223 |
- using System;
- using Comal.Classes;
- namespace PRS.Mobile
- {
- public class DeliveryDetailItemShell : Shell<DeliveryDetailModel, DeliveryItem>
- {
- protected override void ConfigureColumns(ShellColumns<DeliveryDetailModel, DeliveryItem> columns)
- {
- 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>();
- }
- }
|