using Volo.Abp.FeatureManagement; using Volo.Abp.Identity; using Volo.Abp.Modularity; using Volo.Abp.PermissionManagement.HttpApi; using Volo.Abp.TenantManagement; namespace Acme.BookStore { [DependsOn( typeof(BookStoreApplicationContractsModule), typeof(AbpIdentityHttpApiModule), typeof(AbpPermissionManagementHttpApiModule), typeof(AbpTenantManagementHttpApiModule), typeof(AbpFeatureManagementHttpApiModule) )] public class BookStoreHttpApiModule : AbpModule { } }