Beispiel #1
0
 public static List <SiteSupplier> LoadAll(UInt32 sit_id)
 {
     return(HelperDal <SiteSupplier> .LoadAll("SELECT * FROM site_supplier WHERE sit_id=" + sit_id));
 }
 public static List <DeliveryDetail> LoadAll()
 {
     return(HelperDal <DeliveryDetail> .LoadAll("SELECT * FROM delivery_detail"));
 }
Beispiel #3
0
 public static List <Employee> LoadAll()
 {
     return(HelperDal <Employee> .LoadAll("SELECT * FROM employee"));
 }
Beispiel #4
0
 public static List <Delivery> LoadAll()
 {
     return(HelperDal <Delivery> .LoadAll("SELECT * FROM delivery"));
 }
Beispiel #5
0
 public static List <Supplier> LoadAll(UInt32 sit_id)
 {
     return(HelperDal <Supplier> .LoadAll("SELECT * FROM supplier where "));
 }
Beispiel #6
0
 public static List <Stockout> LoadAll(UInt32 sit_id)
 {
     return(HelperDal <Stockout> .LoadAll("SELECT * FROM stockout WHERE sit_id=" + sit_id));
 }
Beispiel #7
0
 public static List <Department> LoadAll()
 {
     return(HelperDal <Department> .LoadAll("SELECT * FROM department"));
 }
Beispiel #8
0
 public static List <Product> LoadAll(UInt32 sup_id)
 {
     return(HelperDal <Product> .LoadAll("SELECT * FROM product WHERE sup_id=" + sup_id));
 }
Beispiel #9
0
 public static List <Log> LoadAll()
 {
     return(HelperDal <Log> .LoadAll("SELECT * FROM log"));
 }
Beispiel #10
0
 public static List <Invoice> LoadAll()
 {
     return(HelperDal <Invoice> .LoadAll("SELECT * FROM invoice"));
 }
Beispiel #11
0
 public static List <StockoutDetail> LoadAll(UInt32 som_id)
 {
     return(HelperDal <StockoutDetail> .LoadAll("SELECT * FROM stockout_detail WHERE som_id=" + som_id));
 }
Beispiel #12
0
 public static List <StockoutDetail> LoadAll()
 {
     return(HelperDal <StockoutDetail> .LoadAll("SELECT * FROM stockout_detail"));
 }
Beispiel #13
0
 public static List <Employee> LoadAll(UInt32 sit_id)
 {
     return(HelperDal <Employee> .LoadAll("SELECT * FROM employee WHERE sit_id=" + sit_id));
 }
Beispiel #14
0
 public static List <DeliveryDetail> LoadAll(UInt32 dlm_id)
 {
     return(HelperDal <DeliveryDetail> .LoadAll("SELECT * FROM delivery_detail WHERE dlm_id=" + dlm_id));
 }
Beispiel #15
0
 public static List <Porder> LoadAll()
 {
     return(HelperDal <Porder> .LoadAll("SELECT * FROM porder"));
 }
Beispiel #16
0
 public static List <Product> LoadAll()
 {
     return(HelperDal <Product> .LoadAll("SELECT * FROM product"));
 }
Beispiel #17
0
 public static List <Porder> LoadAll(UInt32 sit_id)
 {
     return(HelperDal <Porder> .LoadAll("SELECT * FROM porder WHERE sit_id=" + sit_id));
 }
Beispiel #18
0
 public static List <Supplier> LoadAll()
 {
     return(HelperDal <Supplier> .LoadAll("SELECT * FROM supplier"));
 }
Beispiel #19
0
 public static List <PorderDetail> LoadAll()
 {
     return(HelperDal <PorderDetail> .LoadAll("SELECT * FROM porder_detail"));
 }
Beispiel #20
0
 public static List <Stockout> LoadAll()
 {
     return(HelperDal <Stockout> .LoadAll("SELECT * FROM stockout"));
 }
Beispiel #21
0
 public static List <PorderDetail> LoadAll(UInt32 pom_id)
 {
     return(HelperDal <PorderDetail> .LoadAll("SELECT * FROM porder_detail WHERE pom_id=" + pom_id));
 }
Beispiel #22
0
 public static List <Site> LoadAll()
 {
     return(HelperDal <Site> .LoadAll("SELECT * FROM site"));
 }
Beispiel #23
0
 public static List <Role> LoadAll()
 {
     return(HelperDal <Role> .LoadAll("SELECT * FROM role"));
 }