Пример #1
0
 public void Setup()
 {
     manager = new OrderManager();
     order1  = manager.AddNew(new Order {
         name = "Mordern masacra", description = "Want the mordern masacras that has new features.", StatusID = 2, CustomerID = 4, StaffID = 6, total = 5000
     });
     order2 = manager.AddNew(new Order {
         name = "Top cosmetic products", description = "I want the top cosmetic products.", StatusID = 3, CustomerID = 5, StaffID = 6, total = 6000
     });
 }