You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
653 B
26 lines
653 B
1 year ago
|
using BaseService.BaseData.JobManagement.Dto;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Volo.Abp.Application.Services;
|
||
|
|
||
|
namespace BaseService.BaseData.JobManagement
|
||
|
{
|
||
|
public interface IJobAppService : IApplicationService
|
||
|
{
|
||
|
Task<PagedResultDto<JobDto>> GetAll(GetJobInputDto input);
|
||
|
|
||
|
Task<JobDto> Get(Guid id);
|
||
|
|
||
|
Task<JobDto> Create(CreateOrUpdateJobDto input);
|
||
|
|
||
|
Task<JobDto> Update(Guid id, CreateOrUpdateJobDto input);
|
||
|
|
||
|
Task Delete(List<Guid> ids);
|
||
|
|
||
|
Task<ListResultDto<JobDto>> GetAllJobs();
|
||
|
}
|
||
|
}
|