public Animal(int id, int idade, string nome, float peso, string cor, string raca, Especie especie, DateTime dataCadastro) { this.id = id; this.idade = idade; this.nome = nome; this.peso = peso; this.cor = cor; this.raca = raca; this.especie = especie; this.dataCadastro = dataCadastro; }
public Animal() { this.especie = new Especie(); }