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