22 lines
406 B
C#
22 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GarmentFactoryDataModels.Models
|
|
{
|
|
// Исполнитель (рабочий)
|
|
public interface IImplementerModel : IId
|
|
{
|
|
string ImplementerFIO { get; }
|
|
|
|
string Password { get; }
|
|
|
|
//Стаж работы
|
|
int WorkExperience { get; }
|
|
|
|
int Qualification { get; }
|
|
}
|
|
}
|