Fix db seeding, migration, repository services
This commit is contained in:
parent
872dc1e263
commit
6b87902ca7
22 changed files with 606 additions and 64 deletions
|
@ -1,7 +1,9 @@
|
|||
namespace CSR.Domain.Interfaces;
|
||||
|
||||
using CSR.Domain.Entities;
|
||||
|
||||
public interface IPasswordHasher
|
||||
{
|
||||
string HashPassword(string password);
|
||||
bool VerifyHashedPassword(string hashedPassword, string providedPassword);
|
||||
string HashPassword(User user, string password);
|
||||
bool VerifyHashedPassword(User user, string hashedPassword, string providedPassword);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue