public void AddCustomer(Customer c) { _repo.AddCustomer(c); }
public Customer AddCustomer(Customer c) { return(_repo.AddCustomer(c)); }