public string cashRegister;
public void Main(string[] args)
Account myAccount = new Account();
Console.Write("Въведете име на касиера:");
myAccount.cashier = Console.ReadLine();
Console.Write("Въведете номер на каса:");
myAccount.cashRegister = Console.ReadLine();
Console.Write("Въведете цените на артикулите:");
Console.Write("Въведете цена на услуга:");
myAccount.service = Console.ReadLine();
myAccount.article = double.Parse(Console.ReadLine());
myAccount.payment = myAccount.payment + myAccount.article + myAccount.service;
while (myAccount.article > 0);
Console.WriteLine("\nСумата за плащане е: {0,6:###.00} лв", myAccount.payment);