Пример #1
0
        static void Main(string[] args)
        {
            customer cst = new customer()
            {
                customerID = 1, customerName = "sam", country = "USA"
            };

            cst.ShowData();
        }