| 1234567891011121314151617181920 |
-
- namespace Diligent.WebAPI.Business.Services.Interfaces
- {
- public interface IAdService
- {
- Task<List<AdResponseDto>> GetAllAsync();
-
- Task<AdResponseDto> GetByIdAsync(int id);
-
- Task<AdDetailsResponseDto> GetAdDetailsByIdAsync(int id);
-
- Task<List<AdResponseDto>> GetArchiveAds();
-
- Task CreateAsync(AdCreateDto adCreateDto);
-
- Task UpdateAsync(int id, AdUpdateDto adUpdateDto);
-
- Task DeleteAsync(int id);
- }
- }
|