Пример #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;
 }
Пример #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;
 }
Пример #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;
 }
Пример #4
0
 public DataTable Search()
 {
     DataTable tbResult = new DataTable();
     cSetting objDAL = new cSetting();
     tbResult = objDAL.Search();
     return tbResult;
 }
Пример #5
0
 public void LoadById(int ID)
 {
     cSetting objDAL = new cSetting();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }
Пример #6
0
 private void MappingData(cSetting objInfor)
 {
     objInfor.MetaKeyword1 = Data.MetaKeyword1;
     objInfor.MetaDescription1 = Data.MetaDescription1;
 }
Пример #7
0
 private void ConvertData(cSetting objInfor)
 {
     Data.MetaKeyword1 = objInfor.MetaKeyword1;
     Data.MetaDescription1 = objInfor.MetaDescription1;
 }