Exemple #1
0
 public IActionResult Get(int offset, int limit)
 {
     try
     {
         return(Ok(_bankAccountApplicationService.getAll(offset, limit)));
     }
     catch (Exception)
     {
         return(StatusCode(Constantes.HttpStatus.ErrorServer, this.responseHandler.getAppExceptionResponse()));
     }
 }
Exemple #2
0
 public IActionResult Get(int offset = Constantes.DefaultPagination.defaultOffset, int limit = Constantes.DefaultPagination.defaultLimit, string orderBy = Constantes.DefaultPagination.orderBy, string orderDirection = Constantes.DefaultPagination.orderDirection)
 {
     try
     {
         return(Ok(_bankAccountApplicationService.getAll(offset, limit, orderBy, orderDirection)));
     }
     catch (Exception)
     {
         return(StatusCode(Constantes.HttpStatus.ErrorServer, this.responseHandler.getAppExceptionResponse()));
     }
 }