Upload files to 'STOContracts/SearchModels'
This commit is contained in:
parent
06b33087b7
commit
06b66085f8
13
STOContracts/SearchModels/CarPartSearchModel.cs
Normal file
13
STOContracts/SearchModels/CarPartSearchModel.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace STOContracts.SearchModels
|
||||
{
|
||||
public class CarPartSearchModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
}
|
14
STOContracts/SearchModels/CarSearchModel.cs
Normal file
14
STOContracts/SearchModels/CarSearchModel.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace STOContracts.SearchModels
|
||||
{
|
||||
public class CarSearchModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? CarNumber { get; set; }
|
||||
}
|
||||
}
|
16
STOContracts/SearchModels/ClientSearchModel.cs
Normal file
16
STOContracts/SearchModels/ClientSearchModel.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace STOContracts.SearchModels
|
||||
{
|
||||
public class ClientSearchModel
|
||||
{
|
||||
public int? Id { get; private set; }
|
||||
public string? ClientFIO { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Password { get; set; }
|
||||
}
|
||||
}
|
7
STOContracts/SearchModels/ServiceSearchModel.cs
Normal file
7
STOContracts/SearchModels/ServiceSearchModel.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace STOContracts.SearchModels
|
||||
{
|
||||
public class ServiceSearchModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
}
|
14
STOContracts/SearchModels/TechnicalWorkSearchModel.cs
Normal file
14
STOContracts/SearchModels/TechnicalWorkSearchModel.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace STOContracts.SearchModels
|
||||
{
|
||||
public class TechnicalWorkSearchModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user