| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using Comal.Classes;
- using InABox.Mobile;
- using Xamarin.CommunityToolkit.ObjectModel;
- namespace PRS.Mobile
- {
-
- public class StockMovementBatchShell : Shell<StockMovementBatchModel, StockMovementBatch>
- {
-
- protected override void ConfigureColumns(ShellColumns<StockMovementBatchModel, StockMovementBatch> columns)
- {
- columns
- .Map(nameof(Type), x => x.Type)
- .Map(nameof(EmployeeID), x => x.Employee.ID)
- .Map(nameof(Notes), x=>x.Notes)
- .Map(nameof(Timestamp), x=>x.TimeStamp)
- ;
- }
- public StockMovementBatchType Type
- {
- get => Get<StockMovementBatchType>();
- set => Set(value);
- }
- public Guid EmployeeID
- {
- get => Get<Guid>();
- set => Set(value);
- }
- public String Notes
- {
- get => Get<String>();
- set => Set(value);
- }
-
-
- public DateTime Timestamp
- {
- get => Get<DateTime>();
- set => Set(value);
- }
-
- }
-
- }
|