本文整理汇总了C#中Customer.AddOrder方法的典型用法代码示例。如果您正苦于以下问题:C# Customer.AddOrder方法的具体用法?C# Customer.AddOrder怎么用?C# Customer.AddOrder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Customer
的用法示例。
在下文中一共展示了Customer.AddOrder方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: inspecting_a_nested_type_returns_expected_result
public void inspecting_a_nested_type_returns_expected_result()
{
var customer = new Customer { Name = "Acme, Inc." };
customer.AddOrder(new Order { Product = "Toothbrush", Quantity = 1 });
customer.AddOrder(new Order { Product = "Soap on a Roap", Quantity = 2 });
customer.ShipTo.SendTo = "123 E Main St";
var result = customer.Inspect();
StringAssert.IsMatch(@"Customer: (\d+), Name: Acme, Inc., NumberOfOrders: 2, Orders: \[(.*), (.*)\], ShipTo: (.*)", result);
}
示例2: CanAddRemoveOrders
public void CanAddRemoveOrders() {
Customer customer = new Customer("Acme Anvil");
Assert.AreEqual(0, customer.Orders.Count);
Order order = new Order(customer);
Assert.AreEqual(1, customer.Orders.Count);
// Was already added via the order's constructor
customer.AddOrder(order);
Assert.AreEqual(1, customer.Orders.Count);
Assert.IsTrue(customer.Orders.Contains(order));
customer.RemoveOrder(order);
Assert.IsFalse(customer.Orders.Contains(order));
}