You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
*Author:jxx
|
|
|
|
|
*Contact:283591387@qq.com
|
|
|
|
|
*代码由框架生成,此处任何更改都可能导致被代码生成器覆盖
|
|
|
|
|
*所有业务编写全部应在Partial文件夹下OP_YARD_ZHENHUA_CTNINFOService与IOP_YARD_ZHENHUA_CTNINFOService中编写
|
|
|
|
|
*/
|
|
|
|
|
using VOL.YARD.IRepositories;
|
|
|
|
|
using VOL.YARD.IServices;
|
|
|
|
|
using VOL.Core.BaseProvider;
|
|
|
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
|
|
|
using VOL.Entity.DomainModels;
|
|
|
|
|
using VOL.YARD.IRepositories;
|
|
|
|
|
|
|
|
|
|
namespace VOL.YARD.Services
|
|
|
|
|
{
|
|
|
|
|
public partial class OP_YARD_ZHENHUA_CTNINFOService : ServiceBase<OP_YARD_ZHENHUA_CTNINFO, IOP_YARD_ZHENHUA_CTNINFORepository>
|
|
|
|
|
, IOP_YARD_ZHENHUA_CTNINFOService, IDependency
|
|
|
|
|
{
|
|
|
|
|
public OP_YARD_ZHENHUA_CTNINFOService(IOP_YARD_ZHENHUA_CTNINFORepository repository)
|
|
|
|
|
: base(repository)
|
|
|
|
|
{
|
|
|
|
|
Init(repository);
|
|
|
|
|
}
|
|
|
|
|
public static IOP_YARD_ZHENHUA_CTNINFOService Instance
|
|
|
|
|
{
|
|
|
|
|
get { return AutofacContainerModule.GetService<IOP_YARD_ZHENHUA_CTNINFOService>
|
|
|
|
|
(); } }
|
|
|
|
|
}
|
|
|
|
|
}
|