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