public List <Renda> ObterRendas() { if (Pessoas == null || !Pessoas.Any()) { return(new List <Renda>()); } return(Pessoas.SelectMany(x => x.Rendas).ToList()); }
public void AdicionarPessoa(Pessoa pessoa) { if (pessoa == null || (pessoa != null && Pessoas.Any(p => p.Id == pessoa.Id))) { return; } Pessoas.Add(pessoa); }