27 lines
914 B
C#
27 lines
914 B
C#
|
|
/*
|
|||
|
|
*Author:COCO
|
|||
|
|
*代码由框架生成,此处任何更改都可能导致被代码生成器覆盖
|
|||
|
|
*所有业务编写全部应在Partial文件夹下Production_WorkOrderService与IProduction_WorkOrderService中编写
|
|||
|
|
*/
|
|||
|
|
using iMES.Production.IRepositories;
|
|||
|
|
using iMES.Production.IServices;
|
|||
|
|
using iMES.Core.BaseProvider;
|
|||
|
|
using iMES.Core.Extensions.AutofacManager;
|
|||
|
|
using iMES.Entity.DomainModels;
|
|||
|
|
|
|||
|
|
namespace iMES.Production.Services
|
|||
|
|
{
|
|||
|
|
public partial class Production_WorkOrderService : ServiceBase<Production_WorkOrder, IProduction_WorkOrderRepository>
|
|||
|
|
, IProduction_WorkOrderService, IDependency
|
|||
|
|
{
|
|||
|
|
public Production_WorkOrderService(IProduction_WorkOrderRepository repository)
|
|||
|
|
: base(repository)
|
|||
|
|
{
|
|||
|
|
Init(repository);
|
|||
|
|
}
|
|||
|
|
public static IProduction_WorkOrderService Instance
|
|||
|
|
{
|
|||
|
|
get { return AutofacContainerModule.GetService<IProduction_WorkOrderService>(); } }
|
|||
|
|
}
|
|||
|
|
}
|