Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Service/ServiceTemplate/TenantService.cs
2022-04-08 23:44:25 +08:00

15 lines
350 B
C#

using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class TenantService : BaseService<TenantEntity>, ITenantService
{
public TenantService(IRepository<TenantEntity> repository) : base(repository)
{
}
}
}