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