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.
23 lines
722 B
23 lines
722 B
|
|
using Tiobon.Core.IServices;
|
|
using Tiobon.Core.Model.Models;
|
|
using Tiobon.Core.Services.BASE;
|
|
using Tiobon.Core.IRepository.Base;
|
|
using Tiobon.Core.Common.Caches;
|
|
|
|
namespace Tiobon.Core.Services
|
|
{
|
|
/// <summary>
|
|
/// 家庭关系 (服务)
|
|
/// </summary>
|
|
public class Ghrh_ResumeHomeServices : BaseServices<Ghrh_ResumeHome, Ghrh_ResumeHomeDto, InsertGhrh_ResumeHomeInput, EditGhrh_ResumeHomeInput>, IGhrh_ResumeHomeServices
|
|
{
|
|
private readonly IBaseRepository<Ghrh_ResumeHome> _dal;
|
|
public Ghrh_ResumeHomeServices(ICaching caching, IBaseRepository<Ghrh_ResumeHome> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
}
|
|
} |