Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Customer customer = new Customer {
                Id = 1, LastName = "AKCA", Age = 22
            };

            CustomerDal customerDal = new CustomerDal();

            customerDal.Add(customer);
            Console.ReadLine();
            Console.WriteLine("SMTcoder");
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Customer customer = new Customer
            {
                Id       = 5,
                Yas      = 5,
                LastName = "Görken"
            };
            CustomerDal customerDal = new CustomerDal();

            //customerDal.Add(customer);
            Console.ReadLine();
        }