Exemple #1
0
 public ScheduleActionHandler(IAppointmentScheduler appointmentScheduler, IConsole console, CalendarGoogleUiConfiguration configuration)
 {
     this.appointmentScheduler = appointmentScheduler;
     this.console       = console;
     this.configuration = configuration;
 }
Exemple #2
0
 public ScheduleActionHandler(IAppointmentScheduler appointmentScheduler, CalendarUiConsoleSettings configuration, IConsole console)
     : base(console, "Schedule period")
 {
     this.appointmentScheduler = appointmentScheduler;
     this.configuration        = configuration;
 }