mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
756 B
24 lines
756 B
using Acme.BookStore.BookManagement;
|
|
using Volo.Abp.Account;
|
|
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(BookStoreDomainSharedModule),
|
|
typeof(AbpAccountApplicationContractsModule),
|
|
typeof(AbpFeatureManagementApplicationContractsModule),
|
|
typeof(AbpIdentityApplicationContractsModule),
|
|
typeof(AbpPermissionManagementApplicationContractsModule),
|
|
typeof(AbpTenantManagementApplicationContractsModule),
|
|
typeof(BookManagementApplicationContractsModule)
|
|
)]
|
|
public class BookStoreApplicationContractsModule : AbpModule
|
|
{
|
|
|
|
}
|
|
}
|
|
|