Create models and Clean Arch boilerplate
This commit is contained in:
parent
3926db5446
commit
872dc1e263
21 changed files with 576 additions and 27 deletions
7
CSR.Domain/Interfaces/IPasswordHasher.cs
Normal file
7
CSR.Domain/Interfaces/IPasswordHasher.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
namespace CSR.Domain.Interfaces;
|
||||
|
||||
public interface IPasswordHasher
|
||||
{
|
||||
string HashPassword(string password);
|
||||
bool VerifyHashedPassword(string hashedPassword, string providedPassword);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue