Example #1
0
        public IActionResult GetSingleMoveByName(string name, bool expand = false)
        {
            var content   = _moveService.GetAllWhereName(name);
            var resources = _enrichmentProvider.EnrichManyMoves(content, expand);

            return(Result(resources));
        }
Example #2
0
        public IHttpActionResult GetSingleMoveByName(string name)
        {
            var content = _moveService.GetAllWhereName(name);

            return(Result(content));
        }