public class Dog : IAnimal, ILicensedPet
{
public string SpeciesName { get; set; }
public string PetName { get; set; }
public string LicenseID { get; set; }
string IAnimal.SpeciesName
{
get { return this.SpeciesName; }
set { this.SpeciesName = value; }
}
string ILicensedPet.PetName
{
get{return this.PetName;}
set{this.PetName = value;}
}
string ILicensedPet.LicenceID
{
get { return this.LicenseID; }
set { this.LicenseID = value; }
}
}