diff --git a/AutomobilePlant/AutomobilePlant.sln b/AutomobilePlant/AutomobilePlant.sln index 52a30d1..89f64e1 100644 --- a/AutomobilePlant/AutomobilePlant.sln +++ b/AutomobilePlant/AutomobilePlant.sln @@ -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 diff --git a/AutomobilePlant/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj b/AutomobilePlant/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/AutomobilePlant/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/AutomobilePlant/AutomobilePlantDataModels/Enums/OrderStatus.cs b/AutomobilePlant/AutomobilePlantDataModels/Enums/OrderStatus.cs new file mode 100644 index 0000000..59b7bd7 --- /dev/null +++ b/AutomobilePlant/AutomobilePlantDataModels/Enums/OrderStatus.cs @@ -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 + { + } +} diff --git a/AutomobilePlant/AutomobilePlantDataModels/IID.cs b/AutomobilePlant/AutomobilePlantDataModels/IID.cs new file mode 100644 index 0000000..23fc0f3 --- /dev/null +++ b/AutomobilePlant/AutomobilePlantDataModels/IID.cs @@ -0,0 +1,7 @@ +namespace AutomobilePlantDataModels +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/AutomobilePlant/AutomobilePlantDataModels/Models/ICarModel.cs b/AutomobilePlant/AutomobilePlantDataModels/Models/ICarModel.cs new file mode 100644 index 0000000..38dbafa --- /dev/null +++ b/AutomobilePlant/AutomobilePlantDataModels/Models/ICarModel.cs @@ -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 + { + } +} diff --git a/AutomobilePlant/AutomobilePlantDataModels/Models/IComponentModel.cs b/AutomobilePlant/AutomobilePlantDataModels/Models/IComponentModel.cs new file mode 100644 index 0000000..54e93e8 --- /dev/null +++ b/AutomobilePlant/AutomobilePlantDataModels/Models/IComponentModel.cs @@ -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 + { + } +} diff --git a/AutomobilePlant/AutomobilePlantDataModels/Models/IOrderModel.cs b/AutomobilePlant/AutomobilePlantDataModels/Models/IOrderModel.cs new file mode 100644 index 0000000..06721c5 --- /dev/null +++ b/AutomobilePlant/AutomobilePlantDataModels/Models/IOrderModel.cs @@ -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 + { + } +}