Esempio n. 1
0
 //获取申请中的记录
 public static DataTable GetBuyerExport()
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.GetBuyerExport());
 }
Esempio n. 2
0
 public static int UpdateExport(string buyer, string time, int status)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.UpdateExport(buyer, time, status));
 }
Esempio n. 3
0
 public static int InsertExport(string sellerId, string buyer_nick)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.InsertExport(sellerId, buyer_nick));
 }
Esempio n. 4
0
 public static int UpdateExport(string sellerId, int status)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.UpdateExport(sellerId, status));
 }
Esempio n. 5
0
 public static int CheckEndStatus(string sellerId)
 {
     CTCRM.DAL.BuyerexportDAL export = new DAL.BuyerexportDAL();
     return(export.CheckEndStatus(sellerId));
 }