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.
30 lines
795 B
30 lines
795 B
using Volo.Abp.Autofac;
|
|
using Volo.Abp.AutoMapper;
|
|
using Volo.Abp.Domain.Entities.Events.Distributed;
|
|
using Volo.Abp.Modularity;
|
|
using Win_in.Sfs.Scp.v1.Domain;
|
|
using Win_in.Sfs.Scp.v1.EntityFrameworkCore;
|
|
using Win_in.Sfs.Scp.WebApi;
|
|
|
|
namespace Win_in.Sfs.Scp.v1.Event
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpAutoMapperModule),
|
|
typeof(V1ScpDomainModule),
|
|
typeof(WebApiDomainModule),
|
|
typeof(V1ScpEntityFrameworkCoreModule)
|
|
)]
|
|
public class V1ScpEventModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpAutoMapperOptions>(options =>
|
|
{
|
|
options.AddMaps<V1ScpEventModule>();
|
|
});
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|