コード例 #1
0
ファイル: BuyerexportBLL.cs プロジェクト: fubendong/--CTCRM
 //获取申请中的记录
 public static DataTable GetBuyerExport()
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.GetBuyerExport());
 }
コード例 #2
0
ファイル: BuyerexportBLL.cs プロジェクト: fubendong/--CTCRM
 public static int UpdateExport(string buyer, string time, int status)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.UpdateExport(buyer, time, status));
 }
コード例 #3
0
ファイル: BuyerexportBLL.cs プロジェクト: fubendong/--CTCRM
 public static int InsertExport(string sellerId, string buyer_nick)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.InsertExport(sellerId, buyer_nick));
 }
コード例 #4
0
ファイル: BuyerexportBLL.cs プロジェクト: fubendong/--CTCRM
 public static int UpdateExport(string sellerId, int status)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.UpdateExport(sellerId, status));
 }
コード例 #5
0
ファイル: BuyerexportBLL.cs プロジェクト: fubendong/--CTCRM
 public static int CheckEndStatus(string sellerId)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.CheckEndStatus(sellerId));
 }