Ejemplo n.º 1
0
        public Provincie(string provincieCSV)
        {
            var values = provincieCSV.Split(';');

            this.Id   = int.Parse(values[1]);
            this.Naam = values[3];

            this.Gemeentes = new Gemeentes();
        }
Ejemplo n.º 2
0
        public Provincie(string provincieCSV, Regio regio)
        {
            var values = provincieCSV.Split(';');

            this.Id       = int.Parse(values[1]);
            this.Taalcode = values[2];
            this.Naam     = values[3];
            this.Regio    = regio;

            this.Gemeentes = new Gemeentes();
        }