Esempio n. 1
0
 public GetSizedImageByIdHandler(GameTrackerContext context,
                                 ImageSettings settings, IMediator mediator)
 {
     _context  = context;
     _settings = settings;
     _mediator = mediator;
 }
Esempio n. 2
0
 public AttachImageToGameHandler(IConfiguration configuration,
                                 IMediator mediator,
                                 GameTrackerContext context,
                                 ImageSettings settings)
 {
     _mediator  = mediator;
     _context   = context;
     _settings  = settings;
     _imagePath = Path.Combine(AppContext.BaseDirectory, configuration["images:path"]);
 }
Esempio n. 3
0
 public GetPlatformsHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public GetImageIdentifiersForGameHandler(GameTrackerContext context)
 {
     _context = context;
 }
 public AssignGenresToTitleHandler(IMediator mediator, GameTrackerContext context)
 {
     _mediator = mediator;
     _context  = context;
 }
 public RetrieveGameByCodeHandler(GameTrackerContext context)
 {
     _context = context;
 }
 public ToggleImageAsCoverArtHandler(GameTrackerContext context)
 {
     _context = context;
 }
 public AttachImageToGameHandler(IConfiguration configuration, GameTrackerContext context)
 {
     _context   = context;
     _imagePath = Path.Combine(AppContext.BaseDirectory, configuration["images:path"]);
 }
 public RegisterGameHandler(GameTrackerContext context, IAuthenticatedMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
 public RegisterTitleHandler(GameTrackerContext context)
 {
     _context = context;
 }
 public GetCopiesHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 12
0
 public SearchForGamesHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 13
0
 public AddCopyHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 14
0
 public RetrieveRecentlyAddedGamesHandler(GameTrackerContext context)
 {
     _context = context;
 }
        public GetFilePathForImageHandler(GameTrackerContext context, IConfiguration configuration)
        {
            _context = context;

            _imagesPath = Path.Combine(AppContext.BaseDirectory, configuration["images:path"]);
        }
 public PlayersController(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 17
0
 public GameResultTypesController(GameTrackerContext context)
 {
     _context = context;
 }
 public HomeController(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 19
0
 public UpdateCopyHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 20
0
 public GenerateInviteTokenHandler(GameTrackerContext context, ITokenService tokenService)
 {
     _context      = context;
     _tokenService = tokenService;
 }
 public DeleteImageHandler(IMediator mediator, GameTrackerContext context)
 {
     _mediator = mediator;
     _context  = context;
 }
Esempio n. 22
0
 public GamesPlayedController(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 23
0
 public VerifyUserHandler(GameTrackerContext context, IAuthenticatedMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
 public GetImagesAttachedToGameHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 25
0
 public GameReleasesController(GameTrackerContext context)
 {
     _context = context;
 }
 public AuthenticationService(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 27
0
 public RegisterUserHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 28
0
 public UserGamesController(GameTrackerContext context)
 {
     _context = context;
 }
 public GetGenreLabelsHandler(GameTrackerContext context)
 {
     _context = context;
 }
Esempio n. 30
0
 public DeleteCopyHandler(GameTrackerContext context)
 {
     _context = context;
 }