2024-05-04 01:28:24 +04:00
|
|
|
|
using ConfectioneryDataModels.Models;
|
2024-05-03 23:28:34 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerBindingModel : IImplementerModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
public int WorkExperience { get; set; }
|
|
|
|
|
public int Qualification { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|