Пример #1
0
 public int Insert()
 {
     int nResult = 0;
     var objInfor = new cConfig();
     try
     {
         objInfor.AddNew();
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = 1;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Пример #2
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     var objDal = new cConfig();
     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;
     var objInfor = new cConfig();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }