Example #1
0
        public async Task <ActionResult <List <ExtractResponse> > > GetExtract([Required] int userId, [Required] DateTime startDate, [Required] DateTime endDate, MovementTypeEnum?movementType)
        {
            var response = _movementService.GetExtract(userId, startDate, endDate, movementType);

            return(Ok(response));
        }