19 lines
469 B
C#
Raw Normal View History

using ComputersShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.BindingModels
{
public class ImplementerBindingModel: IImplementerModel
{
public int Id { get; set; }
public string ImplementerFIO { get; set; }
public string Password { get; set; }
public int WorkExperience { get; set; }
public int Qualification { get; set; }
}
}