Browse Source
Merge pull request #1536 from colinin/work-calendar-configuration-change
feat: Work calendar configuration change
pull/1542/head
yx lin
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
aspnet-core/framework/calendars/LINGYUN.Abp.Calendar/LINGYUN/Abp/Calendar/WorkdayCalendarService.cs
|
|
|
@ -12,10 +12,10 @@ public class WorkdayCalendarService : IWorkdayCalendarService, ITransientDepende |
|
|
|
private readonly IWorkdayCalendarStore _workdayCalendarStore; |
|
|
|
|
|
|
|
public WorkdayCalendarService( |
|
|
|
IOptions<AbpCalendarOptions> options, |
|
|
|
IOptionsMonitor<AbpCalendarOptions> options, |
|
|
|
IWorkdayCalendarStore workdayCalendarStore) |
|
|
|
{ |
|
|
|
_options = options.Value; |
|
|
|
_options = options.CurrentValue; |
|
|
|
_workdayCalendarStore = workdayCalendarStore; |
|
|
|
} |
|
|
|
|
|
|
|
|