Exemplo n.º 1
0
 public Wardrobe(RoomType roomType, Material baseMaterial, Size size, int numberOfShelves, bool builtIn)
     : base(roomType, baseMaterial,size)
 {
     this.numberOfShelves = numberOfShelves;
     this.builtIn = builtIn;
 }
Exemplo n.º 2
0
        private bool scratchResistant; // karcallo

        #endregion Fields

        #region Constructors

        public KitchenTable(RoomType roomType, Material baseMaterial, Size size, int numberOfUser, bool scratchResistant)
            : base(roomType, baseMaterial,size)
        {
            this.numberOfUser = numberOfUser;
            this.scratchResistant = scratchResistant;
        }
Exemplo n.º 3
0
 public AbstractFurniture(RoomType roomType, Material baseMaterial, Size size)
 {
     this.roomType = roomType;
     this.baseMaterial = baseMaterial;
     this.size = size;
 }
Exemplo n.º 4
0
 public Bed(RoomType roomType, Material baseMaterial, Size size, int numberOfUser, Mattress mattress)
     : base(roomType, baseMaterial,size)
 {
     this.numberOfUser = numberOfUser;
     this.mattress = mattress;
 }