public async Task <IEnumerable <LineaCarreraVM> > GetAllAsync()
        {
            var lineaCarreras = await repository.GetAllAsync();

            var lineaCarrerasVM = mapper.Map <IEnumerable <LineaCarreraVM> >(lineaCarreras);

            return(lineaCarrerasVM);
        }
Esempio n. 2
0
        static async Task GenerarRatingCursosAleatorios()
        {
            var niveles = await nivelRepository.GetAllAsync();

            var lineas = await lineaCarreraRepository.GetAllAsync();

            foreach (var linea in lineas)
            {
                foreach (var nivel in niveles)
                {
                    var cursos = await cursoRepository.GetCursosAsync(default, linea.IdLineaCarrera, nivel.IdNivel, default);