using GerstITS.AutoMapper; using GerstITS.Examples.Logic.Example; using Microsoft.Extensions.DependencyInjection; namespace GerstITS.Examples.Logic { public sealed partial class Module { #region Methods private static void RegisterExample(IServiceCollection container) { container.RegisterMappingsOf(); container.AddScoped(); } #endregion } }