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.
| 12345678910111213141516 |
-
- namespace Diligent.WebAPI.Business.Services.Interfaces
- {
- public interface IAdService
- {
- Task<List<AdResponseDto>> GetAllAsync();
-
- Task<AdResponseDto> GetByIdAsync(int id);
-
- Task CreateAsync(AdCreateDto adCreateDto);
-
- Task UpdateAsync(int id, AdUpdateDto adUpdateDto);
-
- Task DeleteAsync(int id);
- }
- }
|