public List <Cliente> clientesPorEstadoCivil(EstadoCivil civil) { return((from c in this.Clientes where c.EstadoCivil == civil select c).ToList()); }