search models

This commit is contained in:
VictoriaPresnyakova 2023-05-03 19:05:35 +04:00
parent a9a26d56c4
commit 00f049749e
6 changed files with 80 additions and 0 deletions

View File

@ -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
{
}
}

View File

@ -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
{
}
}

View File

@ -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
{
}
}

View 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; }
}
}

View 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; }
}
}

View 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 TransportTypeSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}