Example #1
0
        public IActionResult GetMoveById(string id, bool expand = false)
        {
            var move     = _moveService.GetSingleByInstanceId(id);
            var resource = _enrichmentProvider.EnrichMove(move, expand);

            return(Result(resource));
        }
Example #2
0
        public IHttpActionResult GetMoveById(string id)
        {
            var move = _moveService.GetSingleByInstanceId(id);

            return(Result(move));
        }