123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using Xamarin.Forms;
- namespace PRS.Mobile
- {
- [DoNotPersist]
- public class StoreRequiItemShell : Entity
- {
- public Guid ProductID { get; set; }
- public string ProductCode { get; set; }
- public string ProductName { get; set; }
- public string LocationName { get; set; }
- public double Quantity { get; set; }
- public Guid LocationID { get; set; }
- public Color BorderColor { get; set; }
- public bool IsNotes { get; set; }
- public bool IsNotNotes { get; set; }
- public string Summary { get; set; }
- public DateTime Picked { get; set; }
- public Color Colour { get; set; }
- public Guid JobID { get; set; }
- public Guid StyleID { get; set; }
- public StockDimensions Dimensions { get; set; }
- public StoreRequiItemShell()
- {
- ProductID = Guid.Empty;
- ProductCode = "";
- ProductName = "";
- LocationName = "";
- Quantity = 0;
- ID = Guid.Empty;
- LocationID = Guid.Empty;
- BorderColor = Color.FromHex("#15C7C1");
- IsNotes = false;
- IsNotNotes = true;
- Picked = DateTime.MinValue;
- Colour = Color.Default;
- JobID = Guid.Empty;
- StyleID = Guid.Empty;
- Dimensions = new StockDimensions();
- }
- }
- }
|