ZrAdminNetCore/ZR.Service/Business/GendemoService.cs
2021-12-01 21:29:57 +08:00

27 lines
711 B
C#

using Infrastructure;
using Infrastructure.Attribute;
using ZR.Model.Models;
using ZR.Repository;
namespace ZR.Service.Business
{
/// <summary>
/// 代码生成演示Service业务层处理
///
/// @author zr
/// @date 2021-12-01
/// </summary>
[AppService(ServiceType = typeof(IGendemoService), ServiceLifetime = LifeTime.Transient)]
public class GendemoService : BaseService<Gendemo>, IGendemoService
{
private readonly GendemoRepository _Gendemorepository;
public GendemoService(GendemoRepository repository) : base(repository)
{
_Gendemorepository = repository;
}
#region
#endregion
}
}