Esempio n. 1
0
        public async Task AddCustomer(Customer customer)
        {
            await _context.AddAsync(customer);

            await _context.SaveChangesAsync();
        }