예제 #1
0
 public bool AddOrderInfo(Order order)
 {
     return(_orderRepository.AddOrderInfo(order));
 }
예제 #2
0
 public bool AddOrderInfo(string customerName, string iteamName, int orderQuantity, double totalPrice)
 {
     return(_orderRepository.AddOrderInfo(customerName, iteamName, orderQuantity, totalPrice));
 }