public ContactService(
     IStorageBroker storageBroker,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.storageBroker  = storageBroker;
     this.dateTimeBroker = dateTimeBroker;
     this.loggingBroker  = loggingBroker;
 }
 public StudentAttachmentService(
     IStorageBroker storageBroker,
     ILoggingBroker loggingBroker,
     IDateTimeBroker dateTimeBroker)
 {
     this.storageBroker  = storageBroker;
     this.loggingBroker  = loggingBroker;
     this.dateTimeBroker = dateTimeBroker;
 }
 public RegistrationService(
     IStorageBroker storageBroker,
     ILoggingBroker loggingBroker,
     IDateTimeBroker dateTimeBroker)
 {
     this.storageBroker  = storageBroker;
     this.loggingBroker  = loggingBroker;
     this.dateTimeBroker = dateTimeBroker;
 }
 public CalendarEntryAttachmentService(
     IStorageBroker storageBroker,
     ILoggingBroker loggingBroker,
     IDateTimeBroker dateTimeBroker)
 {
     this.storageBroker  = storageBroker;
     this.loggingBroker  = loggingBroker;
     this.dateTimeBroker = dateTimeBroker;
 }
Beispiel #5
0
 public AttendanceService(
     IStorageBroker storageBroker,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.storageBroker  = storageBroker;
     this.dateTimeBroker = dateTimeBroker;
     this.loggingBroker  = loggingBroker;
 }
Beispiel #6
0
 public StudentSemesterCourseService(
     IStorageBroker storageBroker,
     ILoggingBroker loggingBroker,
     IDateTimeBroker dateTimeBroker)
 {
     this.storageBroker  = storageBroker;
     this.loggingBroker  = loggingBroker;
     this.dateTimeBroker = dateTimeBroker;
 }
Beispiel #7
0
 public UserService(
     IUserManagementBroker userManagementBroker,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.userManagementBroker = userManagementBroker;
     this.dateTimeBroker       = dateTimeBroker;
     this.loggingBroker        = loggingBroker;
 }
 public StudentViewService(
     IStudentService studentService,
     IUserService userService,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.studentService = studentService;
     this.userService    = userService;
     this.dateTimeBroker = dateTimeBroker;
     this.loggingBroker  = loggingBroker;
 }
Beispiel #9
0
 public RunTimeService(IApiBroker apiBroker, ILoggingBroker loggingBroker)
 {
     this.apiBroker     = apiBroker;
     this.loggingBroker = loggingBroker;
 }
 public CloudManagementService()
 {
     this.cloudBroker   = new CloudBroker();
     this.loggingBroker = new LoggingBroker();
 }
 public StudentService(IApiBroker apiBroker, ILoggingBroker loggingBroker)
 {
     this.apiBroker     = apiBroker;
     this.loggingBroker = loggingBroker;
 }
Beispiel #12
0
 public JobService(IApiBroker apiBroker, ILoggingBroker loggingBroker, HttpClient httpClient)
 {
     this.apiBroker     = apiBroker;
     this.loggingBroker = loggingBroker;
     _httpClient        = httpClient;
 }
 public ServiceManagerService(IApiBroker apiBroker, ILoggingBroker loggingBroker)
 {
     this.apiBroker     = apiBroker;
     this.loggingBroker = loggingBroker;
 }