public Item(string name, string description, string category) { ItemID = InvMgt.GetNextItemID(); Name = name; Description = description; CategoryID = category; }
public Item(string ID) { ItemID = InvMgt.GetNextItemID(); }
public InventoryHeader(string ID) { DocumentID = InvMgt.GetNextInventoryHeader(); }
public ReceiveHeader(string ID) { DocumentID = InvMgt.GetNextReceiveHeader(); }
public ReleaseHeader(string ID) { DocumentID = InvMgt.GetNextReleaseNo(); }
public Customer(string ID) { CustomerID = InvMgt.GetNextCustomerID(); }
public Vendor(string ID) { VendorID = InvMgt.GetNextVendorID(); }