Beispiel #1
0
 public TempController(
     IOjsData data,
     IHangfireBackgroundJobService backgroundJobs,
     IProblemGroupsDataService problemGroupsData,
     IParticipantsDataService participantsData,
     IHttpRequesterService httpRequester)
     : base(data)
 {
     this.backgroundJobs    = backgroundJobs;
     this.problemGroupsData = problemGroupsData;
     this.participantsData  = participantsData;
     this.httpRequester     = httpRequester;
 }
 public ExamGroupsBusinessService(
     IExamGroupsDataService examGroupsData,
     IUsersDataService usersData,
     IHttpRequesterService httpRequester,
     IHangfireBackgroundJobService backgroundJobs,
     string sulsPlatformBaseUrl,
     string apiKey)
 {
     this.examGroupsData      = examGroupsData;
     this.usersData           = usersData;
     this.httpRequester       = httpRequester;
     this.backgroundJobs      = backgroundJobs;
     this.sulsPlatformBaseUrl = sulsPlatformBaseUrl;
     this.apiKey = apiKey;
 }
 public AccountController(
     IOjsData data,
     IHttpRequesterService httpRequester)
     : this(data, new OjsUserManager <UserProfile>(new UserStore <UserProfile>(data.Context.DbContext))) =>
     this.httpRequester = httpRequester;