ArticleService.cs 349 B

1234567891011121314
  1. using Infrastructure.Attribute;
  2. using ZR.Model.System;
  3. using ZR.Service.System.IService;
  4. namespace ZR.Service.System
  5. {
  6. /// <summary>
  7. ///
  8. /// </summary>
  9. [AppService(ServiceType = typeof(IArticleService), ServiceLifetime = LifeTime.Transient)]
  10. public class ArticleService : BaseService<Article>, IArticleService
  11. {
  12. }
  13. }