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.
34 lines
1.1 KiB
34 lines
1.1 KiB
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.SettingManagement;
|
|
using Volo.Abp.TenantManagement;
|
|
using Win_in.Sfs.Print.Application.Contacts;
|
|
using Win_in.Sfs.Print.Domain;
|
|
|
|
namespace Win_in.Sfs.Print.Application
|
|
{
|
|
[DependsOn(
|
|
typeof(PrintDomainModule),
|
|
typeof(AbpAccountApplicationModule),
|
|
typeof(PrintApplicationContractsModule),
|
|
typeof(AbpIdentityApplicationModule),
|
|
typeof(AbpPermissionManagementApplicationModule),
|
|
typeof(AbpTenantManagementApplicationModule),
|
|
typeof(AbpFeatureManagementApplicationModule),
|
|
typeof(AbpSettingManagementApplicationModule)
|
|
)]
|
|
public class PrintApplicationModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpAutoMapperOptions>(options =>
|
|
{
|
|
options.AddMaps<PrintApplicationModule>();
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|