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