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