Exemplo n.º 1
0
        public IActionResult GetAllMovements()
        {
            var content   = _movementService.GetAll();
            var resources = _enrichmentProvider.EnrichManyMovements(content);

            return(Result(resources));
        }
Exemplo n.º 2
0
 public async Task <IActionResult> GetAll() => Ok(await movementService.GetAll());
Exemplo n.º 3
0
        public IHttpActionResult GetAllMovements()
        {
            var content = _movementService.GetAll();

            return(Result(content));
        }