Minhasapov R.H. LabWork01_Base #1

Closed
safgerd wants to merge 8 commits from LabWork01_Base into main
7 changed files with 70 additions and 0 deletions
Showing only changes of commit 5d6c335098 - Show all commits

View File

@ -5,6 +5,8 @@ VisualStudioVersion = 17.4.33213.308
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutomobilePlant", "AutomobilePlant\AutomobilePlant.csproj", "{970E66D6-3147-419D-98DC-9E05B10232B5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutomobilePlantDataModels", "AutomobilePlantDataModels\AutomobilePlantDataModels.csproj", "{27B6E4A1-BB53-4AF6-AACA-099A40B64D60}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -15,6 +17,10 @@ Global
{970E66D6-3147-419D-98DC-9E05B10232B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{970E66D6-3147-419D-98DC-9E05B10232B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{970E66D6-3147-419D-98DC-9E05B10232B5}.Release|Any CPU.Build.0 = Release|Any CPU
{27B6E4A1-BB53-4AF6-AACA-099A40B64D60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27B6E4A1-BB53-4AF6-AACA-099A40B64D60}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27B6E4A1-BB53-4AF6-AACA-099A40B64D60}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27B6E4A1-BB53-4AF6-AACA-099A40B64D60}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

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

View File

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

View File

@ -0,0 +1,7 @@
namespace AutomobilePlantDataModels
{
public class Class1
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
internal interface ICarModel
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
internal interface IComponentModel
{
}
}

View File

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