1 лаба удалила папку

This commit is contained in:
a.puchkina 2024-03-27 11:02:58 +04:00
parent 3023dfdb17
commit 78b3fc32cd
7 changed files with 0 additions and 91 deletions

View File

@ -1,25 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34024.191
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TravelCompanyDataModels", "TravelCompanyDataModels\TravelCompanyDataModels.csproj", "{195169D4-7167-4116-AB42-8AAF1D5ED31B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{195169D4-7167-4116-AB42-8AAF1D5ED31B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{195169D4-7167-4116-AB42-8AAF1D5ED31B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{195169D4-7167-4116-AB42-8AAF1D5ED31B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{195169D4-7167-4116-AB42-8AAF1D5ED31B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {946BD6CC-E6F4-4BF1-98C5-FE9675DF582B}
EndGlobalSection
EndGlobal

View File

@ -1,11 +0,0 @@
namespace TravelCompanyDataModels.Enums
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
Выдан = 3,
}
}

View File

@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyDataModels
{
internal class IId
{
}
}

View File

@ -1,10 +0,0 @@
using System.Security.Cryptography;
namespace TravelCompanyDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}

View File

@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyDataModels.Models
{
internal class IOrderModel
{
}
}

View File

@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyDataModels.Models
{
internal class ITravelModel
{
}
}

View File

@ -1,9 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>