예제 #1
0
        public IActionResult GetAllMovements()
        {
            var content   = _movementService.GetAll();
            var resources = _enrichmentProvider.EnrichManyMovements(content);

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

            return(Result(content));
        }