Files
FA_WEB/SytelineSaAppEfDataModel/Services/ILoginService.cs
Piotr Kus 9a7920f0e7 * Added EdiUser Entity and DTO
* Added LoginService to handle login and user creation
* Extended DbContext
* Extended Mapper
2025-01-31 10:08:53 +01:00

10 lines
246 B
C#

using SytelineSaAppEfDataModel.Dtos;
namespace SytelineSaAppEfDataModel.Services;
public interface ILoginService
{
Task<EdiUserDto> CreateUser(string userName, string password);
Task<bool> Login(string username, string password);
}