diff --git a/Contracts/BusinessLogicContracts/IUserLogic.cs b/Contracts/BusinessLogicContracts/IUserLogic.cs index 300e525..fdcc510 100644 --- a/Contracts/BusinessLogicContracts/IUserLogic.cs +++ b/Contracts/BusinessLogicContracts/IUserLogic.cs @@ -3,6 +3,7 @@ using Contracts.SearchModels; using Contracts.ViewModels; using System; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -11,7 +12,7 @@ namespace Contracts.BusinessLogicContracts { public interface IUserLogic { - UserViewModel Login(UserBindingModel model); + UserViewModel Login(string email, string password); UserViewModel Create(UserBindingModel model); diff --git a/Contracts/ViewModels/UserViewModel.cs b/Contracts/ViewModels/UserViewModel.cs index 4f15600..6174d56 100644 --- a/Contracts/ViewModels/UserViewModel.cs +++ b/Contracts/ViewModels/UserViewModel.cs @@ -12,7 +12,6 @@ namespace Contracts.ViewModels public string FirstName { get; set; } = string.Empty; public string SecondName { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; - public string PasswordHash { get; set; } = string.Empty; public DateTime Birthday { get; set; } public RoleViewModel Role { get; set; } = null!; }