Example #1
0
 public CustomerCart AddCustomerCart(CustomerCart newCustomerCart)
 {
     //TODO: Add BL
     return(_repo.AddCustomerCart(newCustomerCart));
 }
Example #2
0
 public void AddCustomerCart(CustomerCart newCustomerCart)
 {
     //TODO: Add BL
     _repo.AddCustomerCart(newCustomerCart);
 }