class ElectionFactory
{
	private ElectionFactory()
	{
		
	}
	
	
	private static boolean made = false;
	
	public static ElectionFactory GetInstance()
	{
		if(!made)
		{
			made = true;
			return new ElectionFactory();
		}
		else
			return null;
		
	}
	
	public Election getElection (String S)
	{
		return new Election(S);
	}
	

}