//Define the PrototypeManager Object.
//The PrototypeManager class (object) creates a collection of Prototype objects.
public class PrototypeManager : IPrototype
{
public Dictionary<string, ProtoType> Prototypes = new Dictionary<string, ProtoType>
{
{"Germany", new ProtoType("Germany", "Berlin", "German")},
{"Italy", new ProtoType("Italy", "Rome", "Italian")},
{"Australia", new ProtoType("Australia", "Canberra", "English")}
};
}