gserver-remake/GServer.Server/Business/Services/AuthService.cs
2025-02-19 18:50:46 +00:00

21 lines
No EOL
569 B
C#

namespace GServer.Server.Business.Services;
public interface IAuthService
{
/// <summary>
/// Checks whether a given email and password combination match.
/// </summary>
/// <param name="email"></param>
/// <param name="password"></param>
/// <returns></returns>
bool IsPasswordCorrect(string email, string password);
}
public class AuthService : IAuthService
{
public bool IsPasswordCorrect(string username, string password)
{
// TODO: Check DB
return username == "aaronyarbz" && password == "password123";
}
}