Add application services for profiles and neutrino
This commit is contained in:
8
RecNet.Application/Profiles/IProfileService.cs
Normal file
8
RecNet.Application/Profiles/IProfileService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user