2023-04-05 19:26:00 +04:00
|
|
|
|
using ComputerStoreDataModels.Enums;
|
|
|
|
|
using System;
|
2023-04-05 18:59:50 +04:00
|
|
|
|
using System.Collections.Generic;
|
2023-04-05 19:26:00 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2023-04-05 18:59:50 +04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerStoreDataModels.Models
|
|
|
|
|
{
|
2023-04-05 19:16:26 +04:00
|
|
|
|
public interface IUserModel : IID
|
2023-04-05 18:59:50 +04:00
|
|
|
|
{
|
2023-04-05 19:16:26 +04:00
|
|
|
|
string Username { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
string FirstName { get; }
|
|
|
|
|
string LastName { get; }
|
2023-04-05 19:26:00 +04:00
|
|
|
|
string MiddleName { get; }
|
|
|
|
|
EmployeeRole Role { get; }
|
2023-04-05 18:59:50 +04:00
|
|
|
|
}
|
|
|
|
|
}
|