// Represents a Collection of Provinces internal class Provinces : List<Province> { } // Represents a Province internal class Province { /// <summary>Gets or sets the Primary key value.</summary>> public int ID { get; set; } /// <summary>Gets or sets the Name.</summary>> public string Name { get; set; } /// <summary>Gets or sets the Description.</summary> public string Description { get; set; } /// <summary>Gets or sets the Abbreviation.</summary> public string Abbreviation { get; set; } }