9 lines
375 B
C#
9 lines
375 B
C#
namespace RecNet.Application.Profiles;
|
|
|
|
public interface IProfileService
|
|
{
|
|
Task<ProfileDTO?> GetProfileAsync(Guid profileId, CancellationToken ct = default);
|
|
Task<IReadOnlyList<ProfileDTO>> GetProfilesAsync(List<Guid> profileIds, CancellationToken ct = default);
|
|
Task<LoginProfileResult> LoginAsync(LoginProfileCommand command, CancellationToken ct = default);
|
|
}
|