33using Eclipse . Application . InboxMessages ;
44using Eclipse . Application . Jobs ;
55using Eclipse . Application . MoodRecords . Collection ;
6+ using Eclipse . Application . MoodRecords . Report . Monthly ;
67using Eclipse . Application . MoodRecords . Report . Weekly ;
78using Eclipse . Application . Notifications . FinishTodoItems ;
89using Eclipse . Application . Notifications . GoodMorning ;
@@ -36,6 +37,7 @@ public void Schedule(QuartzOptions options)
3637 AddJob < NewUserJoinedDomainEvent , UserEventHandlerBase < NewUserJoinedDomainEvent , FinishTodoItemsJob > > ( options ) ;
3738 AddJob < NewUserJoinedDomainEvent , UserEventHandlerBase < NewUserJoinedDomainEvent , GoodMorningJob > > ( options ) ;
3839 AddJob < NewUserJoinedDomainEvent , UserEventHandlerBase < NewUserJoinedDomainEvent , WeeklyMoodReportJob > > ( options ) ;
40+ AddJob < NewUserJoinedDomainEvent , UserEventHandlerBase < NewUserJoinedDomainEvent , MonthlyMoodReportJob > > ( options ) ;
3941 AddJob < NewUserJoinedDomainEvent , UserEventHandlerBase < NewUserJoinedDomainEvent , CollectMoodRecordJob > > ( options ) ;
4042 AddJob < NewUserJoinedDomainEvent , UserEventHandlerBase < NewUserJoinedDomainEvent , CollectFeedbackJob > > ( options ) ;
4143
@@ -58,12 +60,14 @@ public void Schedule(QuartzOptions options)
5860 AddJob < GmtChangedDomainEvent , NewTimeEventHandler < FinishTodoItemsJob > > ( options ) ;
5961 AddJob < GmtChangedDomainEvent , NewTimeEventHandler < GoodMorningJob > > ( options ) ;
6062 AddJob < GmtChangedDomainEvent , NewTimeEventHandler < WeeklyMoodReportJob > > ( options ) ;
63+ AddJob < GmtChangedDomainEvent , NewTimeEventHandler < MonthlyMoodReportJob > > ( options ) ;
6164 AddJob < GmtChangedDomainEvent , NewTimeEventHandler < CollectMoodRecordJob > > ( options ) ;
6265 AddJob < GmtChangedDomainEvent , NewTimeEventHandler < CollectFeedbackJob > > ( options ) ;
6366
6467 /// <see cref="UserDisabledDomainEvent"/>
6568 AddJob < UserDisabledDomainEvent , UserDisabledEventHandler < CollectMoodRecordJob > > ( options ) ;
6669 AddJob < UserDisabledDomainEvent , UserDisabledEventHandler < WeeklyMoodReportJob > > ( options ) ;
70+ AddJob < UserDisabledDomainEvent , UserDisabledEventHandler < MonthlyMoodReportJob > > ( options ) ;
6771 AddJob < UserDisabledDomainEvent , UserDisabledEventHandler < FinishTodoItemsJob > > ( options ) ;
6872 AddJob < UserDisabledDomainEvent , UserDisabledEventHandler < GoodMorningJob > > ( options ) ;
6973 AddJob < UserDisabledDomainEvent , UserDisabledEventHandler < CollectFeedbackJob > > ( options ) ;
@@ -73,6 +77,7 @@ public void Schedule(QuartzOptions options)
7377 AddJob < UserEnabledDomainEvent , UserEventHandlerBase < UserEnabledDomainEvent , FinishTodoItemsJob > > ( options ) ;
7478 AddJob < UserEnabledDomainEvent , UserEventHandlerBase < UserEnabledDomainEvent , GoodMorningJob > > ( options ) ;
7579 AddJob < UserEnabledDomainEvent , UserEventHandlerBase < UserEnabledDomainEvent , WeeklyMoodReportJob > > ( options ) ;
80+ AddJob < UserEnabledDomainEvent , UserEventHandlerBase < UserEnabledDomainEvent , MonthlyMoodReportJob > > ( options ) ;
7681 AddJob < UserEnabledDomainEvent , UserEventHandlerBase < UserEnabledDomainEvent , CollectMoodRecordJob > > ( options ) ;
7782 AddJob < UserEnabledDomainEvent , UserEventHandlerBase < UserEnabledDomainEvent , CollectFeedbackJob > > ( options ) ;
7883 AddJob < UserEnabledDomainEvent , RescheduleRemindersHandler > ( options ) ;
0 commit comments