Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }