Ejemplo n.º 1
0
        public async Task <List <EventoViewModel> > ObterEventoAsyncPorTema(string tema, bool incluirPalestrates)
        {
            var eventos = await eventoRepositorio.ObterEventoAsyncPorTema(tema, incluirPalestrates);

            return(mapper.Map <List <EventoViewModel> >(eventos));
        }