11 lines
250 B
C#
11 lines
250 B
C#
|
namespace AutomobilePlantDataModels.Models
|
|||
|
{
|
|||
|
public interface IImplementerModel : IId
|
|||
|
{
|
|||
|
string ImplementerFIO { get; }
|
|||
|
string Password { get; }
|
|||
|
int WorkExperience { get; }
|
|||
|
int Qualification { get; }
|
|||
|
}
|
|||
|
}
|