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
445 B
15 lines
445 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghra_Job (服务)
|
|
/// </summary>
|
|
public class Ghra_JobServices : BaseServices<Ghra_Job, Ghra_JobDto, InsertGhra_JobInput, EditGhra_JobInput>, IGhra_JobServices
|
|
{
|
|
private readonly IBaseRepository<Ghra_Job> _dal;
|
|
public Ghra_JobServices(ICaching caching, IBaseRepository<Ghra_Job> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |