SyncDOPAppService.cs 669 B

12345678910111213141516171819202122232425
  1. using Abp.Application.Services;
  2. using Abp.Dependency;
  3. using Business.ResourceExamineManagement;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Business.DOP
  10. {
  11. //DOP
  12. public class SyncDOPAppService : ApplicationService, ISyncDOPAppService, ITransientDependency
  13. {
  14. /// <summary>
  15. /// 平台成品监控
  16. /// </summary>
  17. /// <returns></returns>
  18. /// <exception cref="NotImplementedException"></exception>
  19. public string SyncPlatformFinishedProductMonitoring()
  20. {
  21. throw new NotImplementedException();
  22. }
  23. }
  24. }