PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantDataModels/IImplementerModel.cs

17 lines
358 B
C#
Raw Permalink Normal View History

2024-05-06 21:14:20 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantDataModels
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}