Exemple #1
0
        public Tour(int id)
        {
            string st = FileWork.ReadLine(id);

            string[] ss = st.Split(';');
            id              = Convert.ToInt32(ss[0]);
            Napravlenie     = ss[1];
            Prodolzitelnost = ss[2];
            Cena            = ss[3];
        }