13 lines
277 B
C#
13 lines
277 B
C#
|
namespace BeautySaloonDataModels.Models
|
|||
|
{
|
|||
|
public interface IEmployeeModel
|
|||
|
{
|
|||
|
int Id { get; }
|
|||
|
string Name { get; }
|
|||
|
string Surname { get; }
|
|||
|
string Patronymic { get; }
|
|||
|
string Phone { get; }
|
|||
|
int PositionId { get; }
|
|||
|
}
|
|||
|
}
|