public int Insert() { int nResult = 0; cSetting objInfor = new cSetting(); try { objInfor.AddNew(); this.MappingData(objInfor); objInfor.Save(); nResult = objInfor.SettingID; } catch { nResult = 0; } return nResult; }
public int DeleteById(int ID) { int nResult = 0; cSetting objDAL = new cSetting(); try { objDAL.LoadByPrimaryKey(ID); objDAL.MarkAsDeleted(); objDAL.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public int Update(int ID) { int nResult = 0; cSetting objInfor = new cSetting(); try { objInfor.LoadByPrimaryKey(ID); this.MappingData(objInfor); objInfor.Save(); nResult = ID; } catch { nResult = 0; } return nResult; }
public DataTable Search() { DataTable tbResult = new DataTable(); cSetting objDAL = new cSetting(); tbResult = objDAL.Search(); return tbResult; }
public void LoadById(int ID) { cSetting objDAL = new cSetting(); objDAL.LoadByPrimaryKey(ID); ConvertData(objDAL); }
private void MappingData(cSetting objInfor) { objInfor.MetaKeyword1 = Data.MetaKeyword1; objInfor.MetaDescription1 = Data.MetaDescription1; }
private void ConvertData(cSetting objInfor) { Data.MetaKeyword1 = objInfor.MetaKeyword1; Data.MetaDescription1 = objInfor.MetaDescription1; }