Laservall_manager_system/VOL.HR/Services/DeptSync/HR_DeptSyncService.cs

23 lines
700 B
C#
Raw Normal View History

2025-09-26 13:35:45 +08:00
/*
*Authorjxx
*Contact283591387@qq.com
*,
*Partial文件夹下HR_DeptSyncService与IHR_DeptSyncService中编写
*/
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_DeptSyncService : ServiceBase<HR_DeptSync, IHR_DeptSyncRepository>
, IHR_DeptSyncService, IDependency
{
public static IHR_DeptSyncService Instance
{
get { return AutofacContainerModule.GetService<IHR_DeptSyncService>(); } }
}
}