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
510 B
24 lines
510 B
3 years ago
|
using Volo.Abp.Autofac;
|
||
|
using Volo.Abp.Domain.Entities.Events.Distributed;
|
||
|
using Volo.Abp.Modularity;
|
||
|
using Win_in.Sfs.Scp.v1.Domain;
|
||
|
using Win_in.Sfs.Scp.WebApi;
|
||
|
|
||
|
namespace Win_in.Sfs.Scp.v1.Event
|
||
|
{
|
||
|
[DependsOn(
|
||
|
typeof(AbpAutofacModule),
|
||
|
typeof(V1ScpDomainModule),
|
||
|
typeof(WebApiDomainModule)
|
||
|
)]
|
||
|
public class V1ScpEventModule : AbpModule
|
||
|
{
|
||
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
|
||
3 years ago
|
|
||
|
|
||
3 years ago
|
}
|
||
|
}
|
||
|
}
|