Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GoogleCalendarProvider" /> class.
 /// </summary>
 /// <param name="googleCalendarServices">The google calendar services.</param>
 /// <param name="googleEventTranslator">The google event translator.</param>
 /// <param name="appointmentsProvider">The appointments provider.</param>
 public GoogleCalendarProvider(
     IGoogleCalendarServices googleCalendarServices,
     IGoogleEventTranslator googleEventTranslator,
     IAppointmentsProvider appointmentsProvider)
 {
     this.googleCalendarServices = googleCalendarServices;
     this.googleEventTranslator  = googleEventTranslator;
     this.appointmentsProvider   = appointmentsProvider;
 }
Beispiel #2
0
 public BudgeteerController(IRepositoryWrapper repo, ISmsServices smsServices, IGoogleCalendarServices googleCalendarServices)
 {
     _repo                  = repo;
     _smsService            = smsServices;
     _googleCalendarService = googleCalendarServices;
 }