Exemplo n.º 1
0
 public Customer CreateCustomer(Customer customer)
 {
     return(CustomerRepository.CreateCustomer(customer));
 }
Exemplo n.º 2
0
 public Customer GetCustomer(int CustomerId)
 {
     return(CustomerRepository.GetCustomer(CustomerId));
 }
Exemplo n.º 3
0
 public List <Customer> GetAllCustomers()
 {
     return(CustomerRepository.GetAllCustomers());
 }