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
455 B
15 lines
455 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghro_Dept (服务)
|
|
/// </summary>
|
|
public class Ghro_DeptServices : BaseServices<Ghro_Dept, Ghro_DeptDto, InsertGhro_DeptInput, EditGhro_DeptInput>, IGhro_DeptServices
|
|
{
|
|
private readonly IBaseRepository<Ghro_Dept> _dal;
|
|
public Ghro_DeptServices(ICaching caching, IBaseRepository<Ghro_Dept> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |