public static void CreateStraten() { foreach (KeyValuePair <int, List <Segment> > segment in Data.alleSegmenten) { int straatId = segment.Key; Graaf graaf = new Graaf(straatId); graaf.BuildGraaf(segment.Value); Straat straat = new Straat(straatId, Data.straatIdEnStraatNaam[segment.Key], graaf); Data.alleStraten.Add(straatId, straat); } }
public Straat(int id, string strNaam, Graaf g) { Id = id; StraatNaam = strNaam; Graaf = g; }