コード例 #1
0
 public DataTable GetAll()
 {
     return(supplierDAL.GetAll());
 }
コード例 #2
0
ファイル: SupplierBLL.cs プロジェクト: Brfranca/HotelSystem
 //retorna uma lista com todos os fornecedores
 public QueryResponse <List <Supplier> > GetAll()
 {
     return(_supplierDAL.GetAll());
 }
コード例 #3
0
 public List <Supplier> GetAll()
 {
     return(supplierDAL.GetAll());
 }