14 lines
440 B
C#
14 lines
440 B
C#
using Liber_Incantamentum.Application.DTOs.Filter;
|
|
using Liber_Incantamentum.Application.DTOs.General;
|
|
|
|
namespace Liber_Incantamentum.Application.Interfaces.Generals
|
|
{
|
|
public interface IMageService
|
|
{
|
|
Task<ICollection<MageDto>?> GetAllMageAsync(MageDtoFilter filter);
|
|
Task<bool> UpdateMageAsync(MageDtoFilter dto);
|
|
Task<bool> DeleteMageAsync(Guid id);
|
|
Task<bool> AddMageAsync(MageDto dto);
|
|
}
|
|
}
|