Ejemplo n.º 1
0
        static void Main()
        {
            Cafedra ad = new Cafedra();

            do
            {
                Console.WriteLine("[1]. Print information about employees.\n[2]. Output information about employees.\n[3]. Exit.");
                int i = int.Parse(Console.ReadLine());
                switch (i)
                {
                case 1:
                    int kol;
                    Console.WriteLine("Please, print number of employees to save information to the database: "); kol = Convert.ToInt32(Console.ReadLine());
                    for (int qqq = 0; qqq < kol; qqq++)
                    {
                        ad.Print();
                    }
                    break;

                case 2:
                    ad.Output();
                    break;

                case 3:
                    Environment.Exit(0);
                    break;

                default:
                    Console.WriteLine("Ошибка.");
                    break;
                }
            }  while(true);
        }
Ejemplo n.º 2
0
        public void Menu()
        {
            Cafedra cafedra = new Cafedra();

            do
            {
                Console.WriteLine("[1]. Print information about employees.\n[2]. Output information about employees.\n[3]. Exit.");
                int i = int.Parse(Console.ReadLine());
                switch (i)
                {
                case 1:
                    Console.WriteLine("Please, print number of employees to save information to the database: "); int h = Convert.ToInt32(Console.ReadLine());
                    for (int j = 0; j < h; j++)
                    {
                        cafedra.Print();
                    }
                    break;

                case 2:
                    cafedra.Output();
                    break;

                case 3:
                    Environment.Exit(0);
                    break;

                default:
                    Console.WriteLine("Ошибка.");
                    break;
                }
            } while (true);
        }
Ejemplo n.º 3
0
        public void Print()
        {
            Cafedra cafedra = new Cafedra();

            Console.WriteLine("Print name employees: "); cafedra.name             = Console.ReadLine();
            Console.WriteLine("Print surname employees: "); cafedra.famil         = Console.ReadLine();
            Console.WriteLine("Print patronymic employees: "); cafedra.fathername = Console.ReadLine();
            Console.WriteLine("Print position employees: "); cafedra.work         = Console.ReadLine();
            Console.WriteLine("Print level employees: "); cafedra.level           = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("Print hardly employees: "); cafedra.hardly         = Convert.ToInt32(Console.ReadLine());
            lists.Add(cafedra);
        }
Ejemplo n.º 4
0
        static void Main()
        {
            Cafedra cafedra = new Cafedra();

            cafedra.Menu();
        }