models
This commit is contained in:
parent
abf22b1c85
commit
4e74949300
7
Models/Class1.cs
Normal file
7
Models/Class1.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Models
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
9
Models/Models.csproj
Normal file
9
Models/Models.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@ -5,6 +5,8 @@ VisualStudioVersion = 17.4.33122.133
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TransportGuide", "TransportGuide.csproj", "{4FB4F845-A1B0-4B67-B79D-054D8D9BF837}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TransportGuideDataModels", "..\TransportGuideDataModels\TransportGuideDataModels.csproj", "{97F50689-60B7-4955-9CF0-01CBCA875DEC}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -15,6 +17,10 @@ Global
|
||||
{4FB4F845-A1B0-4B67-B79D-054D8D9BF837}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{4FB4F845-A1B0-4B67-B79D-054D8D9BF837}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4FB4F845-A1B0-4B67-B79D-054D8D9BF837}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{97F50689-60B7-4955-9CF0-01CBCA875DEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{97F50689-60B7-4955-9CF0-01CBCA875DEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{97F50689-60B7-4955-9CF0-01CBCA875DEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{97F50689-60B7-4955-9CF0-01CBCA875DEC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
13
TransportGuideDataModels/IId.cs
Normal file
13
TransportGuideDataModels/IId.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels
|
||||
{
|
||||
public interface IId
|
||||
{
|
||||
int Id { get; }
|
||||
}
|
||||
}
|
13
TransportGuideDataModels/Models/IStop.cs
Normal file
13
TransportGuideDataModels/Models/IStop.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels.Models
|
||||
{
|
||||
public interface IStop
|
||||
{
|
||||
string Name { get; }
|
||||
}
|
||||
}
|
15
TransportGuideDataModels/Models/ITransportType.cs
Normal file
15
TransportGuideDataModels/Models/ITransportType.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels.Models
|
||||
{
|
||||
public interface ITransportType
|
||||
{
|
||||
double price { get;}
|
||||
string name { get;}
|
||||
|
||||
}
|
||||
}
|
15
TransportGuideDataModels/Models/n_route.cs
Normal file
15
TransportGuideDataModels/Models/n_route.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TransportGuideDataModels.Models
|
||||
{
|
||||
public interface n_route
|
||||
{
|
||||
string Name { get;}
|
||||
string IP { get;}
|
||||
|
||||
}
|
||||
}
|
9
TransportGuideDataModels/TransportGuideDataModels.csproj
Normal file
9
TransportGuideDataModels/TransportGuideDataModels.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user