diff --git a/ShipyardContracts/SearchModels/ClientSearchModel.cs b/ShipyardContracts/SearchModels/ClientSearchModel.cs new file mode 100644 index 0000000..0dba517 --- /dev/null +++ b/ShipyardContracts/SearchModels/ClientSearchModel.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShipyardContracts.SearchModels +{ + public class ClientSearchModel + { + public int? Id { get; set; } + public string? ClientFIO { get; set; } + public string? Email { get; set; } + public string? Password { get; set; } + } +} diff --git a/ShipyardContracts/SearchModels/OrderSearchModel.cs b/ShipyardContracts/SearchModels/OrderSearchModel.cs index 1f9af2a..a646f7a 100644 --- a/ShipyardContracts/SearchModels/OrderSearchModel.cs +++ b/ShipyardContracts/SearchModels/OrderSearchModel.cs @@ -3,8 +3,8 @@ public class OrderSearchModel { public int? Id { get; set; } + public int? ClientId { get; set; } public DateTime? DateFrom { get; set; } public DateTime? DateTo { get; set; } - } } \ No newline at end of file