You need to create the Workshop class and the Location class. Something like this:


class Workshop
{
public string Name { get; set; } // or public int ID to use it as a key
public decimal...