Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
 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;
 }
Esempio n. 4
0
 public DataTable Search()
 {
     DataTable tbResult = new DataTable();
     cSetting objDAL = new cSetting();
     tbResult = objDAL.Search();
     return tbResult;
 }
Esempio n. 5
0
 public void LoadById(int ID)
 {
     cSetting objDAL = new cSetting();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Esempio n. 6
0
 private void MappingData(cSetting objInfor)
 {
     objInfor.MetaKeyword1 = Data.MetaKeyword1;
     objInfor.MetaDescription1 = Data.MetaDescription1;
 }
Esempio n. 7
0
 private void ConvertData(cSetting objInfor)
 {
     Data.MetaKeyword1 = objInfor.MetaKeyword1;
     Data.MetaDescription1 = objInfor.MetaDescription1;
 }