void ICarService.Update(Car.Entities.Car car) { _Context.Entry(car).State = EntityState.Modified; _Context.SaveChanges(); }
void ICarService.Add(Car.Entities.Car car) { _Context.Cars.Add(car); _Context.SaveChanges(); }