2025-09-25 14:37:10 +08:00
|
|
|
|
/*
|
|
|
|
|
*Author:jxx
|
|
|
|
|
*Contact:283591387@qq.com
|
|
|
|
|
*代码由框架生成,此处任何更改都可能导致被代码生成器覆盖
|
|
|
|
|
*所有业务编写全部应在Partial文件夹下HR_EmployeeSyncService与IHR_EmployeeSyncService中编写
|
|
|
|
|
*/
|
|
|
|
|
using VOL.HR.IRepositories;
|
|
|
|
|
using VOL.HR.IServices;
|
|
|
|
|
using VOL.Core.BaseProvider;
|
|
|
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
|
|
|
using VOL.Entity.DomainModels;
|
|
|
|
|
|
|
|
|
|
namespace VOL.HR.Services
|
|
|
|
|
{
|
|
|
|
|
public partial class HR_EmployeeSyncService : ServiceBase<HR_EmployeeSync, IHR_EmployeeSyncRepository>
|
|
|
|
|
, IHR_EmployeeSyncService, IDependency
|
|
|
|
|
{
|
|
|
|
|
public static IHR_EmployeeSyncService Instance
|
|
|
|
|
{
|
|
|
|
|
get { return AutofacContainerModule.GetService<IHR_EmployeeSyncService>(); } }
|
2025-09-26 13:35:45 +08:00
|
|
|
|
|
|
|
|
|
|
2025-09-25 14:37:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|