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