Exemplo n.º 1
0
 public void AddNewCar(Car car)
 {
     _context.Add(car);
     _context.SaveChanges();
 }
Exemplo n.º 2
0
 public void AddNewCustomer(Customer customer)
 {
     _context.Add(customer);
     _context.SaveChanges();
 }