ApiControllerService.cs 439 B

12345678910111213141516171819
  1. using Attribute;
  2. using Model;
  3. using Model.Base;
  4. using Repository;
  5. using Service;
  6. using Microsoft.AspNetCore.Mvc;
  7. using Vo.Admin;
  8. namespace Services
  9. {
  10. /// <summary>
  11. /// 接口控制器Service业务层处理
  12. /// </summary>
  13. [AppService(ServiceType = typeof(IApiControllerService), ServiceLifetime = LifeTime.Transient)]
  14. public class ApiControllerService : BaseService<ApiController>, IApiControllerService
  15. {
  16. }
  17. }