IJobAppService.cs 653 B

12345678910111213141516171819202122232425
  1. using BaseService.BaseData.JobManagement.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp.Application.Dtos;
  7. using Volo.Abp.Application.Services;
  8. namespace BaseService.BaseData.JobManagement
  9. {
  10. public interface IJobAppService : IApplicationService
  11. {
  12. Task<PagedResultDto<JobDto>> GetAll(GetJobInputDto input);
  13. Task<JobDto> Get(Guid id);
  14. Task<JobDto> Create(CreateOrUpdateJobDto input);
  15. Task<JobDto> Update(Guid id, CreateOrUpdateJobDto input);
  16. Task Delete(List<Guid> ids);
  17. Task<ListResultDto<JobDto>> GetAllJobs();
  18. }
  19. }