コード例 #1
0
ファイル: Pos_ProductManager.cs プロジェクト: anam/gp-HO
 public static List<Pos_Product> GetAllPos_ProductsByInventoryID(int InventoryID)
 {
     List<Pos_Product> pos_Products = new List<Pos_Product>();
     SqlPos_ProductProvider sqlPos_ProductProvider = new SqlPos_ProductProvider();
     pos_Products = sqlPos_ProductProvider.GetAllPos_ProductsByInventoryID(InventoryID);
     return pos_Products;
 }
コード例 #2
0
    public static List <Pos_Product> GetAllPos_ProductsByInventoryID(int InventoryID)
    {
        List <Pos_Product>     pos_Products           = new List <Pos_Product>();
        SqlPos_ProductProvider sqlPos_ProductProvider = new SqlPos_ProductProvider();

        pos_Products = sqlPos_ProductProvider.GetAllPos_ProductsByInventoryID(InventoryID);
        return(pos_Products);
    }