public int DeleteById(int ID) { int nResult = 0; cAdv objDAL = new cAdv(); try { objDAL.LoadByPrimaryKey(ID); objDAL.MarkAsDeleted(); objDAL.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public void LoadById(int ID) { cAdv objDAL = new cAdv(); objDAL.LoadByPrimaryKey(ID); ConvertData(objDAL); }
public int UpdatePriority(int AdvID, int Priority) { int nResult = 0; cAdv objDAL = new cAdv(); try { objDAL.LoadByPrimaryKey(AdvID); objDAL.Priority = Priority; objDAL.Save(); nResult = objDAL.AdvID; } catch { nResult = 0; } return nResult; }
public int UpdateStatus(int ID, int Status) { int nResult = 0; cAdv objDAL = new cAdv(); try { objDAL.LoadByPrimaryKey(ID); objDAL.Status = Status; objDAL.Save(); nResult = objDAL.AdvID; } catch { nResult = 0; } return nResult; }
public int Update(int ID) { int nResult = 0; cAdv objInfor = new cAdv(); try { objInfor.LoadByPrimaryKey(ID); this.MappingData(objInfor); objInfor.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }