public UpdateAdvanceSettingCommandHandler(IApplicationDbContext context, IBlogConfigService blogConfig)
 {
     _context    = context;
     _blogConfig = blogConfig;
 }
Пример #2
0
 public UpdateGeneralSettingsCommandHandler(IApplicationDbContext context, IBlogConfigService blogConfig, IDateTimeService dateTimeService)
 {
     _context         = context;
     _blogConfig      = blogConfig;
     _dateTimeService = dateTimeService;
 }