Ejemplo n.º 1
0
        public ActionResult <IEnumerable <CommandReadDto> > GetAllCommands()
        {
            var commandItems = _repo.GetAppCommand();

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