コード例 #1
0
 public Customer CreateCustomer(Customer customer)
 {
     return(CustomerRepository.CreateCustomer(customer));
 }
コード例 #2
0
 public Customer GetCustomer(int CustomerId)
 {
     return(CustomerRepository.GetCustomer(CustomerId));
 }
コード例 #3
0
 public List <Customer> GetAllCustomers()
 {
     return(CustomerRepository.GetAllCustomers());
 }