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
parent
commit
74b27ab88f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      aspnet-core/framework/calendars/LINGYUN.Abp.Calendar/LINGYUN/Abp/Calendar/WorkdayCalendarService.cs

4
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;
}

Loading…
Cancel
Save