public DataTable GetAll()
 {
     return(supplierDAL.GetAll());
 }
Ejemplo n.º 2
0
 //retorna uma lista com todos os fornecedores
 public QueryResponse <List <Supplier> > GetAll()
 {
     return(_supplierDAL.GetAll());
 }
Ejemplo n.º 3
0
 public List <Supplier> GetAll()
 {
     return(supplierDAL.GetAll());
 }