Добавила models
This commit is contained in:
parent
a2f1221c34
commit
4dab4e5705
10
BeautySalonView/BeautySalonDataModels/Models/IClientModel.cs
Normal file
10
BeautySalonView/BeautySalonDataModels/Models/IClientModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace BeautySalonDataModels.Models
|
||||
{
|
||||
public interface IClientModel : IId
|
||||
{
|
||||
string ClientLogin { get; }
|
||||
string ClientFIO { get; }
|
||||
string ClientEmail { get; }
|
||||
string ClientPassword { get; }
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
namespace BeautySalonDataModels.Models
|
||||
{
|
||||
public interface IEvaluationModel : IId
|
||||
{
|
||||
double PointsProcedure { get; }
|
||||
double PointsCosmetics { get; }
|
||||
int ProcedureId { get; }
|
||||
int ClientId { get; }
|
||||
}
|
||||
}
|
12
BeautySalonView/BeautySalonDataModels/Models/IOrderModel.cs
Normal file
12
BeautySalonView/BeautySalonDataModels/Models/IOrderModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BeautySalonDataModels.Models
|
||||
{
|
||||
public interface IProcedureModel : IId
|
||||
{
|
||||
string ProcedureName { get; }
|
||||
double ProcedurePrice { get; }
|
||||
int ClientId { get; }
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user