📒
//Catalog auto in sale
List<Auto> catalogAuto = new List<Auto>
{
new Auto("Mersedes","E","Blue",2006,3.2f,false),
new Auto("Infiniti","FX35","Black",2006,3.5f,true),
new Auto("BMW","X5","Red",2004,4.4f,true),
new Auto("Toyota","Land Cruiser","White",2008,4.7f,true)
};
// Buyers list NOT to politicize
List<Customer> listCustomer = new List<Customer>
{
new Customer("Zaruhi Postanjyan","Mersedes","055105510"),
new Customer("Arshak Sadoyan","Vaz 21 06","093101010"),
new Customer("Karen Karapetyan","BMW","077777777"),
new Customer("Galust Sahakyan","Toyota","041765149")
};