コード例 #1
0
 public MakeChoiceHandler(IUserAdventureSessionRepository userAdventureSessionRepository)
 {
     _userAdventureSessionRepository = userAdventureSessionRepository;
 }
コード例 #2
0
 public GetCurrentChoiceHandler(IUserAdventureSessionRepository userAdventureSessionRepository)
 {
     _userAdventureSessionRepository = userAdventureSessionRepository;
 }
コード例 #3
0
 public StartNewAdventureHandler(IAdventureRepository adventureRepository,
                                 IUserAdventureSessionRepository userAdventureSessionRepository)
 {
     _adventureRepository            = adventureRepository;
     _userAdventureSessionRepository = userAdventureSessionRepository;
 }