Exemplo n.º 1
0
        public async Task <ActionResult <IEnumerable <Command> > > GetAll()
        {
            var result = await _services.GetAll();

            return(Ok(result.Select(_converter.ToCommandResponse)));
        }