public static ListaContratoTO ListarPorMorador(int idMorador) { _Crud = CrudService <ContratoCrud> .ObterInstancia(); ListaContratoTO retorno = new ListaContratoTO(); try { retorno = _Crud.Listar(); if (retorno.Valido) { retorno.Lista = retorno.Lista.Where(x => x.IdMorador == idMorador).ToList(); } } catch (Exception ex) { retorno.Valido = false; retorno.Mensagem = string.Format("Erro: {0}", ex.Message); } return(retorno); }
public static ListaContratoTO Listar() { _Crud = CrudService <ContratoCrud> .ObterInstancia(); return(_Crud.Listar()); }