public static void Main()
Customer c = new Customer();
string[] firstname = new string[3] { "Samina", "Aziz", "Abdullah" };
string[] lastname = new string[3] { "Panwala", "Belim", "Khan" };
string[] order = new string[3] { "Order1", "Order2", "Order3" };
for (int i=0;i<firstname.Length;i++)
Console.WriteLine("{0} {1} \t", firstname[i],lastname[i]);
string[] Description = new string[9] { "Car", "Books", "Tshits" , "Plane", "shoes", "tv" , "pen", "Eraser", "Pants" };
int[] Price = new int[9] { 25000, 30, 40 , 50000, 45, 300 , 600000, 2, 90 };
int[] Qty = new int[9] { 1, 2, 1 , 1, 1, 1 , 1, 2, 3 };
for (int j=0;j<Description.Length;j++)
Console.Write(" {0} - ${1} - {2} ",Description[j],Price[j],Qty[j]);