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

27 lines
711 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-12-01 21:29:57 +08:00
/// @date 2021-12-01
2021-09-27 08:06:09 +08:00
/// </summary>
[AppService(ServiceType = typeof(IGendemoService), ServiceLifetime = LifeTime.Transient)]
2021-11-27 09:43:04 +08:00
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;
2021-11-27 09:43:04 +08:00
public GendemoService(GendemoRepository repository) : base(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
}
}