Merge branch 'first_branch' of https://git.is.ulstu.ru/Extrimal/PIbd-21_Kurs_Work_Hotel into first_branch

This commit is contained in:
Extrimal 2024-04-21 20:06:47 +04:00
commit ef9da43e30
5 changed files with 42 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}

View File

@ -0,0 +1,10 @@
namespace HotelDataModels.Models
{
public interface IParticipantModels : IId
{
string Surname { get; }
string Name { get; }
string Number { get; }
int OrganiserId { get; }
}
}