public Dog(string bInput, string cInput, int aInput)
public static void Main()
Console.WriteLine("DOG1:");
Dog dog1= new Dog("Bulldog", "Light Gray", 5);
Console.WriteLine("Dog Breed: "+ dog1.breed);
Console.WriteLine("Dog Color: "+ dog1.color);
Console.WriteLine("Dog Age: "+ dog1.age);
Console.WriteLine("============================");
Console.WriteLine("DOG2:");
Dog dog2= new Dog("Beagle", "Orange", 6);
Console.WriteLine("Dog Breed: "+ dog2.breed);
Console.WriteLine("Dog Color: "+ dog2.color);
Console.WriteLine("Dog Age: "+ dog2.age);