PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryDataModels/IImplementerModel.cs
2024-05-19 00:26:03 +04:00

17 lines
358 B
C#

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