コード例 #1
0
 public AppointmentsController(
     ILogger <AppointmentsController> logger,
     IAppointmentStore appointmentStore)
 {
     _logger           = logger;
     _appointmentStore = appointmentStore;
 }
コード例 #2
0
ファイル: ScheduledFetcher.cs プロジェクト: zlrenner/vaxalert
 public ScheduledFetcher(
     IEnumerable <IAppointmentSource> appointmentSources,
     IAppointmentStore appointmentStore,
     INotificationProcessor notificationProcessor)
 {
     _appointmentSources    = appointmentSources;
     _appointmentStore      = appointmentStore;
     _notificationProcessor = notificationProcessor;
 }
コード例 #3
0
 public AppointmentService(IAppointmentStore appointmentStore)
 {
     this.appointmentStore = appointmentStore;
 }