private void ObjectsList(int IdUsuario) { try { var clientesBll = new ClienteBll(); var listClientes = clientesBll.GetList(); ViewBag.Clientes = new SelectList(listClientes, "idCliente", "nome"); var licencasBll = new LicencasBll(); var listlicencas = licencasBll.GetList(); ViewBag.Licencas = new SelectList(listlicencas, "IdLicenca", "Descricao"); //var usuarioBll = new UsuariosBll(); //var listUsuarios = usuarioBll.GetList(" where idusuario not in(" + IdUsuario + ") and excluido = 0 ", false); //ViewBag.Usuarios = new SelectList(listUsuarios, "IdUsuario", "NomeUsuario"); var perfilBll = new UsuariosperfisBll(); var listPerfis = perfilBll.GetList().Where(x => x.IdPerfil >= SessionContext.UsuarioLogado.Usuarios.Perfil.IdPerfil); ViewBag.Perfis = new SelectList(listPerfis, "IdPerfil", "Nome"); } catch (Exception ex) { throw ex; } }
public ActionResult Index() { var cliente = new List <Cliente>(); var bll = new ClienteBll(); string sql = ""; cliente = bll.GetList(sql, true); return(View(cliente)); }