Example #1
0
        public ActionResult EmpresasPartial(int grupoId)
        {
            IList <Empresa>     le  = _empresaService.GetAllEmpresaByGrupo(grupoId);
            EmpresaPartialModel epm = new EmpresaPartialModel();

            epm.GrupoId  = grupoId;
            epm.Empresas = le;
            return(View(epm));
        }