public Animal(double height, double weight)
public double Height { get; set; }
public double Weight { get; set; }
public bool IsAlive { get; set; }
public int Age { get; set; }
public class Dog : Animal
public Dog(double height, double weight, bool doesShed, bool doesDrool, bool isHypoallergenic)
IsHypoallergenic = isHypoallergenic;
public bool DoesShed { get; set; }
public bool DoesDrool { get; set; }
public bool IsHypoallergenic { get; set; }
public class KingCharlesCavalier : Dog
public KingCharlesCavalier(double height, double weight)
: base(height, weight, true, false, false)