using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Modularity; namespace JiShe.CollectBus.MongoDB { public class JiSheCollectBusMongoDbModule: AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { context.Services.AddSingleton(); context.Services.AddSingleton(); context.Services.AddSingleton(typeof(IMongoRepository<>), typeof(MongoBaseRepository<>)); } } }