ZrAdminNetCore/ZR.Service/System/ArticleService.cs
2021-09-16 19:35:17 +08:00

16 lines
350 B
C#

using Infrastructure.Attribute;
using ZR.Model.System;
using ZR.Service.System.IService;
namespace ZR.Service.System
{
/// <summary>
///
/// </summary>
[AppService(ServiceType = typeof(IArticleService), ServiceLifetime = LifeTime.Transient)]
public class ArticleService : BaseService<Article>, IArticleService
{
}
}