17 lines
355 B
C#
Raw Permalink Normal View History

2024-05-03 00:33:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels
{
2024-05-17 02:50:58 +04:00
public interface IImplementerModel : IId
2024-05-03 00:33:06 +04:00
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}