Exercise11.cs 1.2 KB

1234567891011121314151617181920212223242526272829
  1. namespace Library11Authorization
  2. {
  3. public class Exercise11
  4. {
  5. public void Call()
  6. {
  7. int n, end;
  8. do
  9. {
  10. Console.WriteLine("\tВыберите функцию:");
  11. Console.WriteLine("---------------------------------");
  12. Console.WriteLine("1. Регистрация администратора");
  13. Console.WriteLine("2. Регистрация пользователя");
  14. Console.WriteLine("3. Авторизация");
  15. Console.WriteLine("----------------------------------");
  16. n = Convert.ToInt32(Console.ReadLine());
  17. switch (n)
  18. {
  19. case 1: AuthReg.RegistrationAdmin(); break;
  20. case 2: AuthReg.RegistrationUser(); break;
  21. case 3: AuthReg.Authorization(); break;
  22. default: Console.WriteLine("Такого задания нет"); break;
  23. }
  24. Console.WriteLine("1 - Выбрать другую функцию, 0 - В меню.");
  25. end = Convert.ToInt32(Console.ReadLine());
  26. } while (end > 0);
  27. }
  28. }
  29. }