Laservall_manager_system/VOL.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs

25 lines
740 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
/*
*Authorjxx
*Contact283591387@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
}
}