PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantDataModels/Models/IImplementerModel.cs

11 lines
250 B
C#
Raw Permalink Normal View History

namespace AutomobilePlantDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}