public void Update(int id, Appointment entity)
 {
     Crud.Update(id, entity);
 }
 public void Update(int id, ISellable entity)
 {
     ProductCrud.Update(id, entity);
 }
 public void Update(int id, Customer entity)
 {
     LocalCrud.Update(id, entity);
 }
 public void Update(int id, Order entity)
 {
     OrderRepository.Update(id, entity);
 }
Beispiel #5
0
 public void Update(int id, Employee entity)
 {
     EmployeeRepository.Update(id, entity);
 }