コード例 #1
0
ファイル: BPProductTypes.cs プロジェクト: alexan1/marketweb
		public BEProductTypes SelectByProductCategoryID(int ProductCategoryID)
		{
			BEProductTypes ds = new BEProductTypes();
			DAProductTypes da = new DAProductTypes();	
			da.SelectByProductCategoryID(ProductCategoryID, (DataTable)ds.tbl_ProductTypes);
			return ds;
		}
コード例 #2
0
ファイル: BPProductTypes.cs プロジェクト: alexan1/marketweb
		public BEProductTypes SelectAllInactive()
		{
			BEProductTypes ds = new BEProductTypes();
			DAProductTypes da = new DAProductTypes();
			da.SelectAllInactive((DataTable)ds.tbl_ProductTypes);
			return ds;
		}
コード例 #3
0
ファイル: BPProductTypes.cs プロジェクト: alexan1/marketweb
		public BEProductTypes SelectProductTypeByID(int ProductTypeID)
		{
			BEProductTypes ds = new BEProductTypes();
			DAProductTypes da = new DAProductTypes();
		
			da.SelectByID(ProductTypeID.ToString(), (DataTable)ds.tbl_ProductTypes);
			return ds;
		}
コード例 #4
0
ファイル: BPProductTypes.cs プロジェクト: alexan1/marketweb
		public void Update(BEProductTypes ds)
		{
			DAProductTypes da = new DAProductTypes();
			da.Update((DataTable)ds.tbl_ProductTypes);
		}