PIbd22_NikiforovaMV_Automob.../AutomobilePlantDataModels/Models/IImplementerModel.cs

17 lines
367 B
C#
Raw Permalink Normal View History

2024-06-22 22:27:59 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}