Esempio n. 1
0
        public static void odstraniStudentaIzPredmeta(SolaServis.IstoritevClient servis)
        {
            Console.WriteLine("Vnesi id:");
            int id = int.Parse(Console.ReadLine());

            Console.WriteLine("Vnesi kratico");
            string kratica = Console.ReadLine();

            if (servis.odstraniStudentaIzPredmeta(id, kratica))
            {
                Console.WriteLine("Odstranjevanje je bilo uspešno");
            }
            else
            {
                Console.WriteLine("Odstranjevanje ni bilo uspešno");
            }
        }