コード例 #1
0
 public ResponseUserGet UserGet([FromBody] RequestUserGet request)
 {
     try
     {
         PermissionBLL bll = new PermissionBLL();
         return(bll.UserGet(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }