public async Task <CustomerHead> UpdateCustomerAsync(CustomerHead customer) { return(await customerRepository.UpdateAsync(customer, customer.ID)); }
public async Task CreateCustomerAsync(CustomerHead customer) { await customerRepository.AddAsync(customer); }