Пример #1
0
        static void Main(string[] args)
        {
            PawnShop p = new PawnShop();
            Vehicles v = new Vehicles("Car", "description", 8000, "Limusine", 2013, "Renault", (Vehicles.Condition)1);
            Clocks c = new Clocks("Pockett clock", "description", 300, "Swatch", 6, (Clocks.Material)1);
            Employee e = new Employee("John", "Doe", 3000);
            Experts x = new Experts("Joe", "Black", 6000, "Management");
            p.AddItems(v);
            p.AddItems(c);
            //p.AddEmployee(e);
            //p.AddEmployee(x);

            PrintItems(p);
        }