DeliveryItemBarcodeShell.cs 464 B

12345678910111213141516171819
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Mobile;
  4. namespace PRS.Mobile
  5. {
  6. public class DeliveryItemBarcodeShell : Shell<DeliveryItemBarcodeModel, DeliveryItem>
  7. {
  8. protected override void ConfigureColumns(ShellColumns<DeliveryItemBarcodeModel, DeliveryItem> columns)
  9. {
  10. columns
  11. .Map(nameof(Barcode), x => x.Barcode)
  12. ;
  13. }
  14. public String Barcode => Get<String>();
  15. }
  16. }