您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IAdService.cs 354B

12345678910111213141516
  1. namespace Diligent.WebAPI.Business.Services.Interfaces
  2. {
  3. public interface IAdService
  4. {
  5. Task<List<AdResponseDto>> GetAllAsync();
  6. Task<AdResponseDto> GetByIdAsync(int id);
  7. Task CreateAsync(AdCreateDto adCreateDto);
  8. Task UpdateAsync(int id, AdUpdateDto adUpdateDto);
  9. Task DeleteAsync(int id);
  10. }
  11. }