Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
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;
 }
Ejemplo n.º 3
0
 public void LoadById(int ID)
 {
     var objDAL = new cConfig();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }