using GerstITS.Examples.Logic.Example; using GerstITS.Mapping.AutoMapper; 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 }