PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairContracts/SearchModels/OrderSearchModel.cs

14 lines
408 B
C#
Raw Normal View History

2024-04-19 18:02:08 +04:00
using PlumbingRepairDataModels.Enums;
namespace PlumbingRepairContracts.SearchModels
2024-03-23 11:06:35 +04:00
{
public class OrderSearchModel
{
public int? Id { get; set; }
2024-04-12 19:30:31 +04:00
public int? ClientId { get; set; }
2024-04-19 18:02:08 +04:00
public int? ImplementerId { get; set; }
2024-03-23 22:01:27 +04:00
public DateTime? DateFrom { get; set; }
2024-04-19 18:02:08 +04:00
public DateTime? DateTo { get; set;}
public OrderStatus? Status { get; set; }
2024-03-23 11:06:35 +04:00
}
}