Example #1
0
        public ActionResult <IEnumerable <CommandReadDto> > GetAllCommandsByPlatform(string platform)
        {
            var commandItems = _repository.GetAllCommandsByPlatform(platform);

            return(Ok(_mapper.Map <IEnumerable <CommandReadDto> >(commandItems)));
        }