search models
This commit is contained in:
parent
a9a26d56c4
commit
00f049749e
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TransportGuideContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IRouteLogic
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TransportGuideContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IStopLogic
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TransportGuideContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface ITransportTypeLogic
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
16
TransportGuideContracts/SearchModels/RouteSearchModel.cs
Normal file
16
TransportGuideContracts/SearchModels/RouteSearchModel.cs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TransportGuideContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class RouteSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
public string? IP { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
14
TransportGuideContracts/SearchModels/StopSearchModel.cs
Normal file
14
TransportGuideContracts/SearchModels/StopSearchModel.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TransportGuideContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class StopSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TransportGuideContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class TransportTypeSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user