PIbd-23_Yakobchuk_S.V._Moto.../MotorPlant/MotorPlantDataModels/IImplementerModel.cs

17 lines
349 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}