DefaultOptionMonitoringService.cs 585 B

123456789101112131415161718192021222324
  1. using GreenTree.Strohrmann.ERP.Services.Localization;
  2. using Microsoft.AspNetCore.Builder;
  3. using Microsoft.AspNetCore.Localization;
  4. using Microsoft.Extensions.DependencyInjection;
  5. using Microsoft.Extensions.Options;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Text;
  9. namespace GreenTree.Strohrmann.ERP.Web.Configuration
  10. {
  11. public class DefaultOptionMonitoringService : IOptionMonitoringService
  12. {
  13. #region Ctor
  14. public DefaultOptionMonitoringService(
  15. IServiceProvider serviceProvider)
  16. {
  17. }
  18. #endregion
  19. }
  20. }