Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Service/ServiceTemplate/TenantService.cs

15 lines
350 B
C#
Raw Normal View History

2022-04-07 22:48:10 +08:00
using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
2022-04-08 23:44:25 +08:00
public partial class TenantService : BaseService<TenantEntity>, ITenantService
2022-04-07 22:48:10 +08:00
{
2022-04-08 23:44:25 +08:00
public TenantService(IRepository<TenantEntity> repository) : base(repository)
2022-04-07 22:48:10 +08:00
{
}
}
}