Example #1
0
 public Item(string name, string description, string category)
 {
     ItemID      = InvMgt.GetNextItemID();
     Name        = name;
     Description = description;
     CategoryID  = category;
 }
Example #2
0
 public Item(string ID)
 {
     ItemID = InvMgt.GetNextItemID();
 }
Example #3
0
 public InventoryHeader(string ID)
 {
     DocumentID = InvMgt.GetNextInventoryHeader();
 }
Example #4
0
 public ReceiveHeader(string ID)
 {
     DocumentID = InvMgt.GetNextReceiveHeader();
 }
Example #5
0
 public ReleaseHeader(string ID)
 {
     DocumentID = InvMgt.GetNextReleaseNo();
 }
Example #6
0
 public Customer(string ID)
 {
     CustomerID = InvMgt.GetNextCustomerID();
 }
Example #7
0
 public Vendor(string ID)
 {
     VendorID = InvMgt.GetNextVendorID();
 }