public void WordCloud(GastoTransparenteMunicipalEntities db, int takeElements, int year, int origenData)
 {
     LoadNivel1(db, year, origenData, takeElements);
     LoadJsonNivel1();
 }
Example #2
0
        public void LoadNivel4(GastoTransparenteMunicipalEntities db, int idMunicipality, string tipoGasto, int year, int idNivel3)
        {
            var ingreso_Nivel4 = db.Ingreso_Nivel4.Where(r => r.Tipo == tipoGasto && r.IdNivel3 == idNivel3).ToList();

            Mapper.Map(ingreso_Nivel4, this.Ingreso_Nivel4);
        }