Exemplo n.º 1
0
        protected ActionResult BuscarPorId(Guid id)
        {
            var resposta = Servico.Buscar(id);

            if (resposta == null)
            {
                return(NotFound());
            }
            return(Ok(MapperHelper.Map <T, TM>(resposta)));
        }