Ejemplo n.º 1
0
        public async Task <Customer> Add(Customer customer)
        {
            await _context.Customer.AddAsync(customer);

            await _context.SaveChangesAsync();

            return(customer);
        }