예제 #1
0
 public GameManager(IBrothershipUnitOfWork unitOfWork, IGameAPIClient gameApiClient)
 {
     _gameApiClient = gameApiClient;
     _unitOfWork    = unitOfWork;
 }
예제 #2
0
 public GameManager()
 {
     _unitOfWork    = new BrothershipUnitOfWork();
     _gameApiClient = new GameAPIClient();
 }
예제 #3
0
 public GameManager(IBrothershipUnitOfWork unitOfWork)
 {
     _unitOfWork    = unitOfWork;
     _gameApiClient = new GameAPIClient();
 }
예제 #4
0
 public UserManager(IBrothershipUnitOfWork unitOfWork, IGameAPIClient gameApiClient)
 {
     _unitOfWork  = unitOfWork;
     _gameManager = new GameManager(_unitOfWork, gameApiClient);
 }