public ActionResult Index() { if (Session["MoradorTO"] != null) { return(RedirectToActionPermanent("AccessDenied", "ErrorHandler")); } if (Session["UsuarioTO"] == null) { return(RedirectToActionPermanent("Login", "Home")); } _usuarioTO = (UsuarioTO)Session["UsuarioTO"]; if (!_usuarioTO.Valido) { return(RedirectToActionPermanent("Login", "Home")); } ListaEstacionamentoTO listaEstacionamento = new ListaEstacionamentoTO(); try { listaEstacionamento = EstacionamentoService.Listar(); var listaEstacionamentosVM = Mapper.Map <List <EstacionamentoTO>, List <EstacionamentoVM> >(listaEstacionamento.Lista); NomearVariaveis(null, listaEstacionamentosVM); return(View(listaEstacionamentosVM)); } catch (Exception ex) { listaEstacionamento.Mensagem = $"Erro ao obter Estacionamentoes. Erro: {ex.Message} "; } return(View()); }
public ListaEstacionamentoTO Listar() { _Contexto = ControladorAcesso.ObterContexto(); ListaEstacionamentoTO retorno = new ListaEstacionamentoTO(); List <Estacionamento> listaEstacionamento = _Contexto.Estacionamento.ToList(); if (listaEstacionamento == null || listaEstacionamento.Count == 0) { retorno.Valido = false; retorno.Mensagem = Mensagem.Lista("Estacionamento", false); return(retorno); } EstacionamentoTO to; foreach (Estacionamento entidade in listaEstacionamento) { to = new EstacionamentoTO(); to.PreencherTO(entidade); retorno.Lista.Add(to); } retorno.Valido = true; retorno.Mensagem = Mensagem.Lista("Estacionamento", true); return(retorno); }
public static ListaEstacionamentoTO ListarPorApartamento(int idApartamento) { _Crud = CrudService <EstacionamentoCrud> .ObterInstancia(); ListaEstacionamentoTO retorno = new ListaEstacionamentoTO(); try { retorno = _Crud.Listar(); if (retorno.Valido) { retorno.Lista = retorno.Lista.Where(x => x.IdApartamento == idApartamento).ToList(); } } catch (Exception ex) { retorno.Valido = false; retorno.Mensagem = string.Format("Erro: {0}", ex.Message); } return(retorno); }
private void CarregarDados() { ListaMoradorTO listaMoradoresTO = new ListaMoradorTO(); listaMoradoresTO = MoradorService.Listar(); dgMoradores.DataSource = listaMoradoresTO.Lista; dgMoradores.Columns["Identificador"].Visible = false; dgMoradores.Columns["Valido"].Visible = false; dgMoradores.Columns["Mensagem"].Visible = false; dgMoradores.ReadOnly = true; ListaContratoTO listaContratosTO = new ListaContratoTO(); listaContratosTO = ContratoService.Listar(); dgContratos.DataSource = listaContratosTO.Lista; dgContratos.Columns["Identificador"].Visible = false; dgContratos.Columns["Valido"].Visible = false; dgContratos.Columns["Mensagem"].Visible = false; dgContratos.ReadOnly = true; ListaDependenteTO listaDependentesTO = new ListaDependenteTO(); listaDependentesTO = DependenteService.Listar(); dgDependentes.DataSource = listaDependentesTO.Lista; dgDependentes.Columns["Identificador"].Visible = false; dgDependentes.Columns["Valido"].Visible = false; dgDependentes.Columns["Mensagem"].Visible = false; dgDependentes.ReadOnly = true; ListaEstacionamentoTO listaEstacionamentosTO = new ListaEstacionamentoTO(); listaEstacionamentosTO = EstacionamentoService.Listar(); ListaOcorrenciaTO listaOcorrenciasTO = new ListaOcorrenciaTO(); listaOcorrenciasTO = OcorrenciaService.Listar(); dgAdmOcorrencias.DataSource = listaOcorrenciasTO.Lista; dgAdmOcorrencias.Columns["Identificador"].Visible = false; dgAdmOcorrencias.Columns["Valido"].Visible = false; dgAdmOcorrencias.Columns["Mensagem"].Visible = false; dgAdmOcorrencias.ReadOnly = true; ListaReservaTO listaReservasTO = new ListaReservaTO(); listaReservasTO = ReservaService.Listar(); dgReservas.DataSource = listaReservasTO.Lista; dgReservas.Columns["Identificador"].Visible = false; dgReservas.Columns["Valido"].Visible = false; dgReservas.Columns["Mensagem"].Visible = false; dgReservas.ReadOnly = true; ListaAdvertenciaTO listaAdvertenciasTO = new ListaAdvertenciaTO(); listaAdvertenciasTO = AdvertenciaService.Listar(); }