You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Services/Ghrc/Ghrc_SalaryItemServices.cs

15 lines
515 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghrc_SalaryItem (服务)
/// </summary>
public class Ghrc_SalaryItemServices : BaseServices<Ghrc_SalaryItem, Ghrc_SalaryItemDto, InsertGhrc_SalaryItemInput, EditGhrc_SalaryItemInput>, IGhrc_SalaryItemServices
{
private readonly IBaseRepository<Ghrc_SalaryItem> _dal;
public Ghrc_SalaryItemServices(ICaching caching, IBaseRepository<Ghrc_SalaryItem> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}