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.
15 lines
620 B
15 lines
620 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 录用审批单薪资 (服务)
|
|
/// </summary>
|
|
public class Ghrh_OfferApplyOrderSalaryServices : BaseServices<Ghrh_OfferApplyOrderSalary, Ghrh_OfferApplyOrderSalaryDto, InsertGhrh_OfferApplyOrderSalaryInput, EditGhrh_OfferApplyOrderSalaryInput>, IGhrh_OfferApplyOrderSalaryServices
|
|
{
|
|
private readonly IBaseRepository<Ghrh_OfferApplyOrderSalary> _dal;
|
|
public Ghrh_OfferApplyOrderSalaryServices(ICaching caching, IBaseRepository<Ghrh_OfferApplyOrderSalary> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |