PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryDataModels/Models/IImplementerModel.cs
2024-04-17 10:42:00 +04:00

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