2023-04-05 21:47:56 +04:00
|
|
|
|
using ComputerStoreDataModels.Models;
|
2023-04-05 21:24:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerStoreContracts.BindingModels
|
|
|
|
|
{
|
2023-04-05 21:47:56 +04:00
|
|
|
|
public class EmployeeBindingModel : IEmployeeModel
|
2023-04-05 21:24:46 +04:00
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
public string MiddleName { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|