Merge branch 'first_branch' of https://git.is.ulstu.ru/Extrimal/PIbd-21_Kurs_Work_Hotel into first_branch
This commit is contained in:
commit
ef9da43e30
@ -1,4 +1,4 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
|
10
Hotel/HotelDataModels/Models/IConferenceModel.cs
Normal file
10
Hotel/HotelDataModels/Models/IConferenceModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace HotelDataModels.Models
|
||||
{
|
||||
public interface IConferenceModel : IId
|
||||
{
|
||||
string ConferenceName { get; }
|
||||
string Subject { get; }
|
||||
int OrganiserId { get; }
|
||||
public Dictionary<int, IParticipantModels> ConferenceParticipants { get; }
|
||||
}
|
||||
}
|
10
Hotel/HotelDataModels/Models/IMealPlanModel.cs
Normal file
10
Hotel/HotelDataModels/Models/IMealPlanModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace HotelDataModels.Models
|
||||
{
|
||||
public interface IMealPlanModel : IId
|
||||
{
|
||||
string MealPlantName { get; }
|
||||
double MealPlanPrice { get; }
|
||||
int OrganiserId { get; }
|
||||
public Dictionary<int, IParticipantModels> MealPlanParticipants { get; }
|
||||
}
|
||||
}
|
11
Hotel/HotelDataModels/Models/IOrganiserModel.cs
Normal file
11
Hotel/HotelDataModels/Models/IOrganiserModel.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace HotelDataModels.Models
|
||||
{
|
||||
public interface IOrganiserModel
|
||||
{
|
||||
string OrganiserLogin { get; }
|
||||
string OrganiserPassword { get; }
|
||||
string OrganiserNumber { get; }
|
||||
string OrganiserName { get; }
|
||||
string OrganiserSurName { get; }
|
||||
}
|
||||
}
|
10
Hotel/HotelDataModels/Models/IParticipantModels.cs
Normal file
10
Hotel/HotelDataModels/Models/IParticipantModels.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace HotelDataModels.Models
|
||||
{
|
||||
public interface IParticipantModels : IId
|
||||
{
|
||||
string Surname { get; }
|
||||
string Name { get; }
|
||||
string Number { get; }
|
||||
int OrganiserId { get; }
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user