Ejemplo n.º 1
0
 public ContactService(
     IStorageBroker storageBroker,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.storageBroker  = storageBroker;
     this.dateTimeBroker = dateTimeBroker;
     this.loggingBroker  = loggingBroker;
 }
Ejemplo n.º 2
0
 public StudentAttachmentService(
     IStorageBroker storageBroker,
     ILoggingBroker loggingBroker,
     IDateTimeBroker dateTimeBroker)
 {
     this.storageBroker  = storageBroker;
     this.loggingBroker  = loggingBroker;
     this.dateTimeBroker = dateTimeBroker;
 }
Ejemplo n.º 3
0
 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;
 }
Ejemplo n.º 5
0
 public AttendanceService(
     IStorageBroker storageBroker,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.storageBroker  = storageBroker;
     this.dateTimeBroker = dateTimeBroker;
     this.loggingBroker  = loggingBroker;
 }
Ejemplo n.º 6
0
 public StudentSemesterCourseService(
     IStorageBroker storageBroker,
     ILoggingBroker loggingBroker,
     IDateTimeBroker dateTimeBroker)
 {
     this.storageBroker  = storageBroker;
     this.loggingBroker  = loggingBroker;
     this.dateTimeBroker = dateTimeBroker;
 }
Ejemplo n.º 7
0
 public UserService(
     IUserManagementBroker userManagementBroker,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.userManagementBroker = userManagementBroker;
     this.dateTimeBroker       = dateTimeBroker;
     this.loggingBroker        = loggingBroker;
 }
Ejemplo n.º 8
0
 public StudentViewService(
     IStudentService studentService,
     IUserService userService,
     IDateTimeBroker dateTimeBroker,
     ILoggingBroker loggingBroker)
 {
     this.studentService = studentService;
     this.userService    = userService;
     this.dateTimeBroker = dateTimeBroker;
     this.loggingBroker  = loggingBroker;
 }
Ejemplo n.º 9
0
 public RunTimeService(IApiBroker apiBroker, ILoggingBroker loggingBroker)
 {
     this.apiBroker     = apiBroker;
     this.loggingBroker = loggingBroker;
 }
Ejemplo n.º 10
0
 public CloudManagementService()
 {
     this.cloudBroker   = new CloudBroker();
     this.loggingBroker = new LoggingBroker();
 }
Ejemplo n.º 11
0
 public StudentService(IApiBroker apiBroker, ILoggingBroker loggingBroker)
 {
     this.apiBroker     = apiBroker;
     this.loggingBroker = loggingBroker;
 }
Ejemplo n.º 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;
 }