public List <Appointment> GetAll()
 {
     return(Crud.GetAll());
 }
Ejemplo n.º 2
0
 public List <ISellable> GetAll()
 {
     return(ProductCrud.GetAll());
 }
Ejemplo n.º 3
0
 public List <Customer> GetAll()
 {
     return(LocalCrud.GetAll());
 }
Ejemplo n.º 4
0
 public List <Order> GetAll()
 {
     return(OrderRepository.GetAll());
 }
Ejemplo n.º 5
0
 public List <Employee> GetAll()
 {
     return(EmployeeRepository.GetAll());
 }