示例#1
0
 public void AddCustomer(Customer c)
 {
     _repo.AddCustomer(c);
 }
示例#2
0
 public Customer AddCustomer(Customer c)
 {
     return(_repo.AddCustomer(c));
 }