Upload files to 'STOContracts/SearchModels'

This commit is contained in:
Ivan_Starostin 2024-05-01 14:28:10 +04:00
parent 06b33087b7
commit 06b66085f8
5 changed files with 64 additions and 0 deletions

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

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

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

View File

@ -0,0 +1,7 @@
namespace STOContracts.SearchModels
{
public class ServiceSearchModel
{
public int? Id { 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 STOContracts.SearchModels
{
public class TechnicalWorkSearchModel
{
public int? Id { get; set; }
public string Name { get; set; }
}
}