コード例 #1
0
 public DailyCheckInitiatedEventHandler(AdminUpdatesWebhook webhook,
                                        IAlumniGraduationService alumniGraduationService,
                                        IDailyCheckPingService dailyCheckPingService,
                                        IDailyCheckSubscriptionPlanCountService dailyCheckSubscriptionPlanCountService,
                                        IVideosService videosService,
                                        IRepository <DailyCheck> repository)
 {
     _webhook = webhook;
     _alumniGraduationService = alumniGraduationService;
     _dailyCheckPingService   = dailyCheckPingService;
     _dailyCheckSubscriptionPlanCountService = dailyCheckSubscriptionPlanCountService;
     _videosService = videosService;
     _repository    = repository;
 }
コード例 #2
0
 public DailyCheckInitiatedEventHandler(AdminUpdatesWebhook webhook,
                                        IAlumniGraduationService alumniGraduationService)
 {
     _webhook = webhook;
     _alumniGraduationService = alumniGraduationService;
 }