namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IAdService { Task> GetAllAsync(); Task GetByIdAsync(int id); Task CreateAsync(AdCreateDto adCreateDto); Task UpdateAsync(int id, AdUpdateDto adUpdateDto); Task DeleteAsync(int id); } }