コード例 #1
0
 public SemestersController(IStudentSystemApi studentSystemApi, SemestersServiceClient semestersClient)
 {
     this.studentSystemApi = studentSystemApi;
     this.semestersClient  = semestersClient;
 }
コード例 #2
0
 public ScoresController(IStudentSystemApi studentSystemApi, ScoresServiceClient scoresClient)
 {
     this.studentSystemApi = studentSystemApi;
     this.scoresClient     = scoresClient;
 }
コード例 #3
0
 public StudentSystemApiLoggingDecorator(ILoggerFactory loggerFactory, IStudentSystemApi requestsExecutor)
 {
     this.requestsExecutor = requestsExecutor;
     this.logger           = loggerFactory.Create(LOGGER, LOGGER);
 }
コード例 #4
0
 public ProfessorsController(IStudentSystemApi studentSystemApi, ProfessorsServiceClient professorsClient)
 {
     this.studentSystemApi = studentSystemApi;
     this.professorsClient = professorsClient;
 }
コード例 #5
0
 public HomeController(IStudentSystemApi studentSystemApi, ReportsServiceClient reportsClient)
 {
     this.studentSystemApi = studentSystemApi;
     this.reportsClient    = reportsClient;
 }
コード例 #6
0
 public DisciplinesController(IStudentSystemApi studentSystemApi, DisciplinesServiceClient disciplinesClient)
 {
     this.studentSystemApi  = studentSystemApi;
     this.disciplinesClient = disciplinesClient;
 }