using Volo.Abp.Account; using Volo.Abp.AutoMapper; using Volo.Abp.FeatureManagement; using Volo.Abp.Identity; using Volo.Abp.Modularity; using Volo.Abp.PermissionManagement; using Volo.Abp.TenantManagement; namespace Acme.BookStore { [DependsOn( typeof(BookStoreDomainModule), typeof(BookStoreApplicationContractsModule), typeof(AbpAccountApplicationModule), typeof(AbpIdentityApplicationModule), typeof(AbpPermissionManagementApplicationModule), typeof(AbpTenantManagementApplicationModule), typeof(AbpFeatureManagementApplicationModule) )] public class BookStoreApplicationModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { Configure(options => { /* Use `true` for the `validate` parameter if you want to * validate the profile on application startup. * See http://docs.automapper.org/en/stable/Configuration-validation.html for more info * about the configuration validation. */ options.AddProfile(); }); } } }