From d63de503ca4563550e38554175c6511164237d09 Mon Sep 17 00:00:00 2001 From: VictoriaPresnyakova Date: Mon, 17 Apr 2023 18:07:28 +0400 Subject: [PATCH] ImplementerBindingModel --- .../BindingModels/ImplementerBindingModel.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 JewelryStoreContracts/BindingModels/ImplementerBindingModel.cs diff --git a/JewelryStoreContracts/BindingModels/ImplementerBindingModel.cs b/JewelryStoreContracts/BindingModels/ImplementerBindingModel.cs new file mode 100644 index 0000000..5d9c8e3 --- /dev/null +++ b/JewelryStoreContracts/BindingModels/ImplementerBindingModel.cs @@ -0,0 +1,22 @@ +using JewelryStoreDataModels.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace JewelryStoreContracts.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; } + } +}