Добавила models

This commit is contained in:
Allllen4a 2024-04-24 14:02:00 +04:00
parent a2f1221c34
commit 4dab4e5705
4 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace BeautySalonDataModels.Models
{
public interface IClientModel : IId
{
string ClientLogin { get; }
string ClientFIO { get; }
string ClientEmail { get; }
string ClientPassword { get; }
}
}

View File

@ -0,0 +1,10 @@
namespace BeautySalonDataModels.Models
{
public interface IEvaluationModel : IId
{
double PointsProcedure { get; }
double PointsCosmetics { get; }
int ProcedureId { get; }
int ClientId { get; }
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
namespace BeautySalonDataModels.Models
{
public interface IOrderModel : IId
{
DateTime OrderDate { get; }
double OrderAmount { get; }
int ClientId { get; }
}
}

View File

@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace BeautySalonDataModels.Models
{
public interface IProcedureModel : IId
{
string ProcedureName { get; }
double ProcedurePrice { get; }
int ClientId { get; }
}
}