23 lines
734 B
C#
23 lines
734 B
C#
/*
|
||
*Author:jxx
|
||
*Contact:283591387@qq.com
|
||
*代码由框架生成,此处任何更改都可能导致被代码生成器覆盖
|
||
*所有业务编写全部应在Partial文件夹下gateway_nodesService与Igateway_nodesService中编写
|
||
*/
|
||
using Warehouse.IRepositories;
|
||
using Warehouse.IServices;
|
||
using VolPro.Core.BaseProvider;
|
||
using VolPro.Core.Extensions.AutofacManager;
|
||
using VolPro.Entity.DomainModels;
|
||
|
||
namespace Warehouse.Services
|
||
{
|
||
public partial class gateway_nodesService : ServiceBase<gateway_nodes, Igateway_nodesRepository>
|
||
, Igateway_nodesService, IDependency
|
||
{
|
||
public static Igateway_nodesService Instance
|
||
{
|
||
get { return AutofacContainerModule.GetService<Igateway_nodesService>(); } }
|
||
}
|
||
}
|