| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using comal.timesheets.CustomControls;
- using Comal.Classes;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace comal.timesheets
- {
- public static class RequiItems
- {
- public static List<StoreRequiItem> NewRequisitionRows { get; set; }
- public static List<RequisitionItem> OldRequisitionItems { get; set; }
- public static List<HoldingsCacheShell> holdingsCache { get; set; }
- public static bool HoldingsLoaded { get; set; }
- public class HoldingsCacheShell
- {
- public Guid ID { get; set; }
- public Guid ProductID { get; set; }
- public Guid LocationID { get; set; }
- public string LocationName { get; set; }
- public string Units { get; set; }
- public Guid JobID { get; set; }
- public string JobNumber { get; set; }
- public string JobName { get; set; }
- public Guid StyleID { get; set; }
- public string StyleCode { get; set; }
- public string StyleDescription { get; set; }
- public string DimensionsUnitSize { get; set; }
- public HoldingsCacheShell()
- {
- ID = Guid.Empty;
- ProductID = Guid.Empty;
- LocationID = Guid.Empty;
- LocationName = "";
- Units = "";
- DimensionsUnitSize = "";
- JobID = Guid.Empty;
- JobNumber = "";
- JobName = "";
- StyleID = Guid.Empty;
- StyleCode = "";
- StyleDescription = "";
- }
- }
- }
- }
|