| 123456789101112131415161718192021222324 |
- using GreenTree.Maschinenbestellungen.Services.Localization;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Localization;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Options;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GreenTree.Maschinenbestellungen.Web.Configuration
- {
- public class DefaultOptionMonitoringService : IOptionMonitoringService
- {
- #region Ctor
- public DefaultOptionMonitoringService(
- IServiceProvider serviceProvider)
- {
- }
- #endregion
- }
- }
|