public Bathroom SecondBathroom()
        {
            var secondBathroom = new Bathroom {

                 BathroomID = new Int32()
            ,
                 BathroomValue = null

             };

            return secondBathroom;
        }
        public Bathroom ThirdBathroom()
        {
            var thirdBathroom = new Bathroom {

                 BathroomID = new Int32()
            ,
                 BathroomValue = null

             };

            return thirdBathroom;
        }
        public Bathroom FirstBathroom()
        {
            var firstBathroom = new Bathroom {

                 BathroomID = new Int32()
            ,
                 BathroomValue = null

             };

            return firstBathroom;
        }