//Define the Country Object.
//The Country class (object) defines the structure for a country data object.
//The Country class (object) contains the CompareTo() method which will invoke the CompareTemplateMethod() method in the Template Method class.
public class Country : IComparable
{
public string CountryName { get; private set; }
public Country(string country)
{
CountryName = country;
}
public int CompareTo(object obj)
{
Algorithm<Country> algoCntry = new Algorithm<Country>();
return algoCntry.CompareTemplateMethod(this, obj);
}
}