Exemplo n.º 1
0
 public Customer CreateCustomer(Customer customerToCreate)
 {
     _context.Attach(customerToCreate).State = EntityState.Added;
     _context.SaveChanges();
     return(customerToCreate);
 }