25 lines
502 B
C#
25 lines
502 B
C#
using Abp.Modules;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YunDa.ISAS.Application.Core;
|
|
|
|
namespace Yunda.SOMS.OperationsMainSiteGatewayServer
|
|
{
|
|
|
|
[DependsOn(typeof(ISASApplicationCoreModule))] // 依赖 Autofac 模块
|
|
public class OMSGAbpModule : AbpModule
|
|
{
|
|
public override void PreInitialize()
|
|
{
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|