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_TRUCKINFOService与IOP_YARD_ZHENHUA_TRUCKINFOService中编写
|
|
|
|
|
*/
|
|
|
|
|
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_TRUCKINFOService : ServiceBase<OP_YARD_ZHENHUA_TRUCKINFO, IOP_YARD_ZHENHUA_TRUCKINFORepository>
|
|
|
|
|
, IOP_YARD_ZHENHUA_TRUCKINFOService, IDependency
|
|
|
|
|
{
|
|
|
|
|
public OP_YARD_ZHENHUA_TRUCKINFOService(IOP_YARD_ZHENHUA_TRUCKINFORepository repository)
|
|
|
|
|
: base(repository)
|
|
|
|
|
{
|
|
|
|
|
Init(repository);
|
|
|
|
|
}
|
|
|
|
|
public static IOP_YARD_ZHENHUA_TRUCKINFOService Instance
|
|
|
|
|
{
|
|
|
|
|
get { return AutofacContainerModule.GetService<IOP_YARD_ZHENHUA_TRUCKINFOService>
|
|
|
|
|
(); } }
|
|
|
|
|
}
|
|
|
|
|
}
|