コード例 #1
0
 public ResponseKMBalListSearch BalAccountListSearch(RequestKMBalListSearch request)
 {
     try
     {
         AccountBookBLL bll = new AccountBookBLL();
         return(bll.BALAccountSearch(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }
コード例 #2
0
 public ResponseDocDetailAccountListSearch DocDetailListSearch([FromBody] RequestSummaryListSearch request)
 {
     try
     {
         AccountBookBLL bll = new AccountBookBLL();
         return(bll.DocDetailListSearch(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }
コード例 #3
0
 public ResponseCodeGetInPeriod CodeGetInPeriod([FromBody] RequestCodeGetInPeriod request)
 {
     try
     {
         AccountBookBLL bll = new AccountBookBLL();
         return(bll.CodeGetInPeriod(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }
コード例 #4
0
 public ResponseCalculateValuesGet CalculateValuesGet(RequestCalculateValuesGet request)
 {
     try
     {
         AccountBookBLL bll = new AccountBookBLL();
         return(bll.CalculateValuesGet(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }