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_MessageUser (服务)
|
|
/// </summary>
|
|
public class Ghrm_MessageUserServices : BaseServices<Ghrm_MessageUser, Ghrm_MessageUserDto, InsertGhrm_MessageUserInput, EditGhrm_MessageUserInput>, IGhrm_MessageUserServices
|
|
{
|
|
private readonly IBaseRepository<Ghrm_MessageUser> _dal;
|
|
public Ghrm_MessageUserServices(ICaching caching, IBaseRepository<Ghrm_MessageUser> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |