2023-04-17 16:50:56 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace JewelryStoreDataModels.Models
|
|
|
|
|
{
|
2023-04-17 18:05:56 +04:00
|
|
|
|
public interface IImplementerModel : IId
|
2023-04-17 16:50:56 +04:00
|
|
|
|
{
|
2023-04-17 18:05:56 +04:00
|
|
|
|
string ImplementerFIO { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
int WorkExperience { get; }
|
|
|
|
|
int Qualification { get; }
|
|
|
|
|
|
2023-04-17 16:50:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|