예제 #1
0
 public DocOrderBill()
 {
     Inventory = new DocInventory();
     Number = "";
     RegDate = DateTime.Now;
     LastUpdate = DateTime.Now;
 }
예제 #2
0
 public DocOrder()
 {
     Inventory = new DocInventory();
     Foundation = "";
     Number = "";
     RegDate = DateTime.Now;
     LastUpdate = DateTime.Now;
 }
예제 #3
0
 public DocOrderBill(int id, DocInventory inventory, string number, DateTime date, DateTime lastUpdate)
 {
     Id = id;
     Inventory = inventory;
     Number = number;
     RegDate = date;
     LastUpdate = lastUpdate;
 }
예제 #4
0
 public DocInsideBill()
 {
     Inventory = new DocInventory();
     From = new UserOtdel();
     To = new UserOtdel();
     Number = "";
     RegDate = DateTime.Now;
     LastUpdate = DateTime.Now;
 }
예제 #5
0
 public DocOrder(int id, DocInventory inventory, string foundation, string number, DateTime date,
                 DateTime lastUpdate)
 {
     Id = id;
     Inventory = inventory;
     Foundation = foundation;
     Number = number;
     RegDate = date;
     LastUpdate = lastUpdate;
 }
예제 #6
0
 public DocInsideBill(int id, DocInventory inventory, UserOtdel from, UserOtdel to, string number, 
                      DateTime date, DateTime lastUpdate)
 {
     Id = id;
     Inventory = inventory;
     From = from;
     To = to;
     Number = number;
     RegDate = date;
     LastUpdate = lastUpdate;
 }