예제 #1
0
 public ResultsController(
     IOjsData data,
     IContestsDataService contestsData,
     IParticipantsDataService participantsData,
     IParticipantScoresBusinessService participantScoresBusiness)
 {
     this.data                      = data;
     this.contestsData              = contestsData;
     this.participantsData          = participantsData;
     this.participantScoresBusiness = participantScoresBusiness;
 }
예제 #2
0
 public TempController(
     IOjsData data,
     IHangfireBackgroundJobService backgroundJobs,
     IProblemGroupsDataService problemGroupsData,
     IParticipantScoresBusinessService participantScoresBusiness)
     : base(data)
 {
     this.backgroundJobs            = backgroundJobs;
     this.problemGroupsData         = problemGroupsData;
     this.participantScoresBusiness = participantScoresBusiness;
 }
 public SubmissionsController(
     IOjsData data,
     ISubmissionsForProcessingDataService submissionsForProcessingData,
     IParticipantScoresBusinessService participantScoresBusiness,
     IParticipantScoresDataService participantScoresData)
     : base(data)
 {
     this.submissionsForProcessingData = submissionsForProcessingData;
     this.participantScoresBusiness    = participantScoresBusiness;
     this.participantScoresData        = participantScoresData;
 }