Ejemplo n.º 1
0
 public ExamsController(
     ICategoriesService categoriesService,
     IDifficultiesService difficultiesService,
     IHttpClientAsync httpClient,
     IExamsService examsService,
     IRankingsService rankingsService)
 {
     this.categoriesService   = categoriesService;
     this.difficultiesService = difficultiesService;
     this.httpClient          = httpClient;
     this.examsService        = examsService;
     this.rankingsService     = rankingsService;
 }
 public LotteryBasicRequestManager(ILotteryIssueService lotteryIssueService, IRankingsService rankingsService)
 {
     this.mLotteryIssueService = lotteryIssueService;
     this.mRankingsService     = rankingsService;
 }
Ejemplo n.º 3
0
 public RankingsController(IRankingsService rankingsService)
 {
     this.rankingsService = rankingsService;
 }
Ejemplo n.º 4
0
 public RankingController(IRankingsService service)
 {
     this.service = service;
 }
Ejemplo n.º 5
0
 public RankingsController(IRankingsService service, IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
 {
     _service = service;
 }