Example #1
0
 public LibraryService(NotSteamContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #2
0
 public GamesController(IGameService gameService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     GameService = gameService;
 }
Example #3
0
 public LibrariesController(ILibraryService libraryService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     LibraryService = libraryService;
 }
Example #4
0
 public UserService(NotSteamContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #5
0
 public PurchasesController(IPurchaseService purchaseService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     PurchaseService = purchaseService;
 }
Example #6
0
 public PurchaseService(NotSteamContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #7
0
 public UsersController(IUserService userService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     UserService = userService;
 }
Example #8
0
 public ReviewsController(IReviewService reviewService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     ReviewService = reviewService;
 }
Example #9
0
 public CompaniesController(ICompanyService companyService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     CompanyService = companyService;
 }
Example #10
0
 public TagsController(ITagService tagService, NotSteamContext context, IMapper mapper) : base(context, mapper)
 {
     TagService = tagService;
 }
Example #11
0
 public BaseController(NotSteamContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #12
0
 public GameTagService(NotSteamContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #13
0
 public CompanyService(NotSteamContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }