Начало Lab6. Создание интерфейса имплементора, щас пойдет возня

This commit is contained in:
malimova 2024-05-03 22:38:03 +04:00
parent db32d4fc50
commit fa0d58be11

View File

@ -0,0 +1,16 @@
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; }
}
}