Files
iMES_Net/iMES.Report/Services/Report/View_EmployeePerformanceService.cs

27 lines
942 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
/*
*AuthorCOCO
*,
*Partial文件夹下View_EmployeePerformanceService与IView_EmployeePerformanceService中编写
*/
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_EmployeePerformanceService : ServiceBase<View_EmployeePerformance, IView_EmployeePerformanceRepository>
, IView_EmployeePerformanceService, IDependency
{
public View_EmployeePerformanceService(IView_EmployeePerformanceRepository repository)
: base(repository)
{
Init(repository);
}
public static IView_EmployeePerformanceService Instance
{
get { return AutofacContainerModule.GetService<IView_EmployeePerformanceService>(); } }
}
}