using Liber_Incantamentum.Application.DTOs.Mage; namespace Liber_Incantamentum.Application.Interfaces { public interface IMageService { Task> GetAllMagesAsync(MageDtoFilter filter); Task UpdateMageAsync(MageDtoUpdate dto, Guid id); Task DeleteMageAsync(Guid id); Task AddMageAsync(MageDtoCreate dto); Task? GetMageByIdAsync(Guid id); } }