public void DeleteCustomer(long id) { CustomerRepository.Delete(x => x.Id == id); }
public int Delete(int id) { return(repo.Delete(id)); }