Ejemplo n.º 1
0
 private Room TakeOrCreateAppropriateRoom(int betChoice, int capacityChoice)
 {
     return(_sessionRepo.TakePendingRoom(betChoice, capacityChoice) ??
            _sessionRepo.MakeRoom(betChoice, capacityChoice));
 }