Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            IShopEntity <Customer, int, bool> custRep = new CustomerRepository();

            Customer c = new Customer()
            {
                LastName = "Articus", FirstName = "Kevin", Birthday = new DateTime(1989, 06, 27), Orders = new List <Order>()
            };

            custRep.AddItem(c);

            Console.ReadKey();
        }