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