Ejemplo n.º 1
0
 public ResponseUserDelete UserDelete([FromBody] RequestUserDelete request)
 {
     try
     {
         PermissionBLL bll = new PermissionBLL();
         return(bll.UserDelete(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }