2023-04-05 21:47:56 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2023-04-09 03:17:58 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2023-04-05 21:47:56 +04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerStoreDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IEmployeeModel : IID
|
|
|
|
|
{
|
2023-04-09 03:17:58 +04:00
|
|
|
|
[MaxLength(15)]
|
|
|
|
|
string Username { get; }
|
|
|
|
|
[MaxLength(20)]
|
|
|
|
|
string Password { get; }
|
|
|
|
|
[MaxLength(255)]
|
|
|
|
|
string? FirstName { get; }
|
|
|
|
|
[MaxLength(255)]
|
|
|
|
|
string? LastName { get; }
|
|
|
|
|
[MaxLength(255)]
|
2023-04-05 22:13:48 +04:00
|
|
|
|
string? MiddleName { get; }
|
2023-04-05 21:47:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|