16 lines
399 B
C#
16 lines
399 B
C#
using SqlSugar;
|
|
using Yi.Framework.Interface.RABC;
|
|
using Yi.Framework.Model.RABC.Entitys;
|
|
using Yi.Framework.Repository;
|
|
using Yi.Framework.Service.Base;
|
|
|
|
namespace Yi.Framework.Service.RABC
|
|
{
|
|
public partial class TenantService : BaseService<TenantEntity>, ITenantService
|
|
{
|
|
public TenantService(IRepository<TenantEntity> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|