using Microsoft.Extensions.DependencyInjection; using Shentun.Peis.OrganizationUnits; using Shentun.WebPeis.Users; using Volo.Abp.Account; using Volo.Abp.AutoMapper; using Volo.Abp.Caching; using Volo.Abp.Caching.StackExchangeRedis; using Volo.Abp.FeatureManagement; using Volo.Abp.Identity; using Volo.Abp.Modularity; using Volo.Abp.PermissionManagement; using Volo.Abp.SettingManagement; using Volo.Abp.TenantManagement; namespace Shentun.WebPeis; [DependsOn( typeof(WebPeisDomainModule), typeof(AbpAccountApplicationModule), typeof(WebPeisApplicationContractsModule), typeof(AbpIdentityApplicationModule), typeof(AbpPermissionManagementApplicationModule), typeof(AbpTenantManagementApplicationModule), typeof(AbpFeatureManagementApplicationModule), typeof(AbpSettingManagementApplicationModule), typeof(AbpCachingStackExchangeRedisModule) )] public class WebPeisApplicationModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { Configure(options => { options.AddMaps(); }); context.Services.AddTransient(); context.Services.AddTransient(); Configure(options => { options.KeyPrefix = "WebPeis"; options.HideErrors = false; }); } }