Beispiel #1
0
 public GameService(IBullsAndCowsSystem bullsAndCowsSystem, NotificationService notifyService)
 {
     this.system       = bullsAndCowsSystem;
     this.notifySystem = notifyService;
 }
 public NotificationService(IBullsAndCowsSystem bullsAndCowsSystem)
 {
     this.system = bullsAndCowsSystem;
 }
Beispiel #3
0
 public GuessService(IBullsAndCowsSystem bullsAndCowsSystem, INotificationService notificationSystem)
 {
     this.notifySystem = notificationSystem;
     this.system       = bullsAndCowsSystem;
 }
Beispiel #4
0
 public ScoreService(IBullsAndCowsSystem bullsAndCowsSystem)
 {
     this.system = bullsAndCowsSystem;
 }
Beispiel #5
0
 public UsersService(IBullsAndCowsSystem serviceSystem)
 {
     this.system = serviceSystem;
 }