コード例 #1
0
        public async Task <ActionResult <clsResponse <CicloDeRehabilitacionDTO> > > getAll(int pagina, int rowsPerPage)
        {
            logger.LogInformation("Get all ciclo de rehabilitacion page {0} rowsPerPage {1} by user => {2}", pagina, rowsPerPage, getUser());
            var ciclos = await fundabiem.getAllCiclosRehabilitacion(pagina, rowsPerPage);

            return(Ok(ciclos));
        }