ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarDataModels/Models/IImplementerModel.cs

20 lines
363 B
C#
Raw Permalink Normal View History

2024-05-12 19:04:40 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}