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