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