Beispiel #1
0
 public int DeleteById(int ID)
 {
     int nResult = 0;
     cUserRole objDAL = new cUserRole();
     try
     {
         objDAL.LoadByPrimaryKey(ID);
         objDAL.MarkAsDeleted();
         objDAL.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Beispiel #2
0
 public int Update(int ID)
 {
     int nResult = 0;
     cUserRole objInfor = new cUserRole();
     try
     {
         objInfor.LoadByPrimaryKey(ID);
         this.MappingData(objInfor);
         objInfor.Save();
         nResult = ID;
     }
     catch
     {
         nResult = 0;
     }
     return nResult;
 }
Beispiel #3
0
 public void LoadById(int ID)
 {
     cUserRole objDAL = new cUserRole();
     objDAL.LoadByPrimaryKey(ID);
     ConvertData(objDAL);
 }