2024-04-15 15:25:51 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace IceCreamShopDataModels
|
|
|
|
|
{
|
2024-05-12 13:29:49 +04:00
|
|
|
|
public interface IImplementerModel : IId
|
2024-04-15 15:25:51 +04:00
|
|
|
|
{
|
|
|
|
|
string ImplementerFIO { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
int WorkExperience { get; }
|
|
|
|
|
int Qualification { get; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|