コード例 #1
0
ファイル: BPDocuments.cs プロジェクト: alexan1/marketweb
		public BEDocuments SelectActiveAttachmentsByCompanyIDAndInventoryID(int CompanyID, int InventoryID)
		{
			DADocuments da = new DADocuments();
			BEDocuments ds = new BEDocuments();

			da.SelectActiveAttachmentsByCompanyIDAndInventoryID(CompanyID, InventoryID, ds.tbl_Documents);

			return ds;
		}