Пример #1
0
        private void CreateAccountant()
        {
            System.Console.WriteLine("Enter first and last names: \n");
            string accName = System.Console.ReadLine();
            string accLast = System.Console.ReadLine();

            _controller.CreateAccountant(accName, accLast);
        }