Esempio n. 1
0
 public ActionResult UserRole_IU(RoleBase roleBase)
 {
     try
     {
         actionResult.dtResult = admintDL.UserRole_IU(roleBase);
         if (actionResult.dtResult != null && actionResult.dtResult.Rows.Count > 0)
         {
             actionResult.IsSuccess = true;
         }
     }
     catch (Exception ex)
     {
         ErrorReporting.ActionLayerError(ex);
     }
     return(actionResult);
 }