Files
shgx_tz_mes_backend_sync/ZR.Service/Business/GendemoService.cs

27 lines
691 B
C#
Raw Normal View History

2021-09-27 08:06:09 +08:00
using Infrastructure;
using Infrastructure.Attribute;
using ZR.Model.Models;
using ZR.Repository;
namespace ZR.Service.Business
{
/// <summary>
/// 代码生成演示Service业务层处理
///
/// @author zr
2021-11-24 14:30:21 +08:00
/// @date 2021-11-24
2021-09-27 08:06:09 +08:00
/// </summary>
[AppService(ServiceType = typeof(IGendemoService), ServiceLifetime = LifeTime.Transient)]
public class GendemoService: BaseService<Gendemo>, IGendemoService
2021-09-27 08:06:09 +08:00
{
2021-11-24 14:30:21 +08:00
private readonly GendemoRepository _Gendemorepository;
public GendemoService(GendemoRepository repository)
{
2021-11-24 14:30:21 +08:00
_Gendemorepository = repository;
}
2021-10-29 13:23:22 +08:00
2021-09-27 08:06:09 +08:00
#region
2021-11-24 14:30:21 +08:00
2021-09-27 08:06:09 +08:00
#endregion
}
}