Ejemplo n.º 1
0
        }//end AllCliEnts()

        private void AddClient()
        {
            Client client = new Client();

            Console.WriteLine("Въведете име на клиент: ");
            client.Name = Console.ReadLine();
            Console.WriteLine("Въведете ЕГН на клиент: ");
            client.Egn = Console.ReadLine();
            Console.WriteLine("Въведете адрес: ");
            client.Adress = Console.ReadLine();
            Console.WriteLine("Въведете телефон на клиента: ");
            client.Tel = Console.ReadLine();
            productBusines.AddClient(client);
        }//end AddClient()