static void Main(string[] args)
	{
		Company ehs = new Company();
		
		ehs.Name = "Engine House Solutions Ltd";
		
		ehs.Location = "Bristol, United Kingdom";
		
		ehs.Description = "Software development company doing all sorts of coding magic with c#, SQL, VB & Python.";
		
		ehs.Contact = "hello@ehs.limited";

	}