摘要:
析取方法public string PlaceOrderForWidgets(int quantity,string customerNumber){ var invoice=new Invoice { InvoiceNumber=Guid.NewGuid().ToString(), TotalPrice=PricePerWidget*quantity, Quantity=quantity }; var customer=_customerService.GetCustomer(customerNumber); invoice.CustomerN...
阅读全文