Presnyakova V. V. Lab_6 #7

Closed
Victoria_Presnyakova wants to merge 24 commits from Lab_6 into Lab_5
Showing only changes of commit d63de503ca - Show all commits

View File

@ -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; }
}
}