SUBD_PIbd-21_Balberova_D.N./BeautySaloon/BeautySaloonDataModels/IEmployeeModel.cs

13 lines
270 B
C#

namespace BeautySaloonDataModels
{
public interface IEmployeeModel
{
int Id { get; }
string Name { get; }
string Surname { get; }
string Patronymic { get; }
string Phone { get; }
int PositionId { get; }
}
}