Esempio n. 1
0
 public static Slab Create(SlabState state, bool hasWall)
 {
     return(new Slab(state, hasWall));
 }
Esempio n. 2
0
 public Slab WithState(SlabState state)
 {
     return(new Slab(state, HasWall));
 }
Esempio n. 3
0
 private Slab(SlabState state, bool hasWall)
 {
     State   = state;
     HasWall = hasWall;
 }
Esempio n. 4
0
 public static Slab Create(SlabState state, bool hasWall)
 {
     return new Slab(state, hasWall);
 }
Esempio n. 5
0
 public Slab WithState(SlabState state)
 {
     return new Slab(state, HasWall);
 }
Esempio n. 6
0
 private Slab(SlabState state, bool hasWall)
 {
     State = state;
     HasWall = hasWall;
 }