Laservall_manager_system/VOL.HR/Services/DeptShip/HR_DeptShipService.cs

23 lines
700 B
C#
Raw Normal View History

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