|
|
@ -1,5 +1,6 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Security.Cryptography; |
|
|
|
using System.Text; |
|
|
|
|
|
|
|
namespace CoviDokClientX.Models |
|
|
@ -9,29 +10,34 @@ namespace CoviDokClientX.Models |
|
|
|
public string Id { get; set; } |
|
|
|
public string FirstName { get; set; } |
|
|
|
public string LastName { get; set; } |
|
|
|
public Gender Gender { get; set; } |
|
|
|
public Role Role { get; set; } |
|
|
|
|
|
|
|
public string Email { get; set; } |
|
|
|
|
|
|
|
public string Password { get; set; } |
|
|
|
|
|
|
|
public string ConfirmPassword { get; set; } |
|
|
|
public string Address { get; set; } |
|
|
|
public string Phone { get; set; } |
|
|
|
public DateTime RegistrationDate { get; set; } |
|
|
|
public int? PictureId { get; set; } |
|
|
|
public string PictureName { get; set; } |
|
|
|
public string PictureId { get; set; } |
|
|
|
|
|
|
|
public string DisplayName |
|
|
|
private static byte[] GetHash(string inputString) |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return $"{LastName} {FirstName}"; |
|
|
|
} |
|
|
|
using (HashAlgorithm algorithm = SHA512.Create()) |
|
|
|
return algorithm.ComputeHash(Encoding.UTF8.GetBytes(inputString)); |
|
|
|
} |
|
|
|
public static string GetHashString(string inputString) |
|
|
|
{ |
|
|
|
StringBuilder sb = new StringBuilder(); |
|
|
|
foreach (byte b in GetHash(inputString)) |
|
|
|
sb.Append(b.ToString("X2")); |
|
|
|
|
|
|
|
return sb.ToString(); |
|
|
|
} |
|
|
|
|
|
|
|
public bool CheckPassword(string Candidate) |
|
|
|
{ |
|
|
|
return GetHashString(Candidate) == Password; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public enum Role { Doctor, Assistant, Parent, Child } |
|
|
|
public enum Gender { Male, Female} |
|
|
|
} |
|
|
|