Пример #1
0
        /// <summary>
        /// Add FIRST List For Example
        /// </summary>
        static void AddNEWListForExample()
        {
            FurnitureLogic.AddFurniture(new Furniture(_name: "Anders Hejlsberg", _count: 10));
            FurnitureLogic.AddFurniture(new Furniture(_name: "Nike", _count: 15));
            FurnitureLogic.AddFurniture(new Furniture(_name: "Bosh", _count: 10));


            MaterialLogic.AddMaterial(new Material(type: "Woden", lenght: 100, height: 15, weight: 5));
            MaterialLogic.AddMaterial(new Material(type: "Metal", lenght: 100, height: 15, weight: 10.21));
            MaterialLogic.AddMaterial(new Material(type: "Sand", lenght: 100, height: 15, weight: 250));
        }