Beispiel #1
0
 public EventController(IEventService service, ICalendarService calService, INotificationService notifyService, IOccurrenceService occurService)
 {
     this.service       = service;
     this.calService    = calService;
     this.notifyService = notifyService;
     this.occurService  = occurService;
 }
 public OccurrenceController(IDynamicsTokenService dynamicsTokenService, IOccurrenceService occurrenceService, IOptions <DynamicsOptions> instance, IHttpClientFactory httpClientFactory)
     : base(dynamicsTokenService, httpClientFactory)
 {
     _occurrenceService = occurrenceService;
     _instance          = instance;
 }
Beispiel #3
0
 public OccurrenceController(IConfiguration configuration, IOccurrenceService occurenceService) : base(configuration)
 {
     _occurenceService = occurenceService;
 }