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
525 B
15 lines
525 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghrm_MessageToDo (服务)
|
|
/// </summary>
|
|
public class Ghrm_MessageToDoServices : BaseServices<Ghrm_MessageToDo, Ghrm_MessageToDoDto, InsertGhrm_MessageToDoInput, EditGhrm_MessageToDoInput>, IGhrm_MessageToDoServices
|
|
{
|
|
private readonly IBaseRepository<Ghrm_MessageToDo> _dal;
|
|
public Ghrm_MessageToDoServices(ICaching caching, IBaseRepository<Ghrm_MessageToDo> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |