survey-webapp/SurveyBackend/SurveyBackend.Core/Services/IAuthorizationService.cs

9 lines
No EOL
231 B
C#

using SurveyBackend.Core.Models;
namespace SurveyBackend.Core.Services;
public interface IAuthorizationService
{
public Task<string> LogInUser(string email, string password);
public Task<string> RegisterUser(User user);
}