コード例 #1
0
ファイル: ProductBLL.cs プロジェクト: atiburrahman09/Signbd
        public DataTable GetActiveProductsByWareHouseorSalesCenterForSales(string Id)
        {
           
            ProductDAL product = new ProductDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start();
                DataTable dt = product.GetActiveProductsByWareHouseorSalesCenterForSales(Id,db);
                db.Stop();

                return dt;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                product = null;
            }
        }