IJobGetService.cs 188 B

123456789
  1. using System.Collections.Generic;
  2. namespace XYY.Service.JobManage
  3. {
  4. public interface IJobGetService<T> where T : class
  5. {
  6. List<BaseJobModel<T>> GetAndSendJobs();
  7. }
  8. }