SUBD_PIbd-21_Balberova_D.N./BeautySaloon/BeautySaloonDataModels/Models/IClientModel.cs

13 lines
285 B
C#

namespace BeautySaloonDataModels.Models
{
public interface IClientModel
{
int Id { get; }
string Name { get; }
string Surname { get; }
string Patronymic { get; }
string Phone { get; }
List<IOrderModel> Orders { get; }
}
}