public async Task AddCustomer(Customer customer) { await _context.AddAsync(customer); await _context.SaveChangesAsync(); }