23 lines
700 B
C#
23 lines
700 B
C#
|
/*
|
|||
|
*Author:jxx
|
|||
|
*Contact:283591387@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>(); } }
|
|||
|
}
|
|||
|
}
|