PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryContracts/SearchModels/OrderSearchModel.cs

20 lines
524 B
C#
Raw Normal View History

2024-05-04 23:59:55 +04:00
using ConfectioneryDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
public int? ClientId { get; set; }
2024-05-04 23:59:55 +04:00
public int? ImplementerId { get; set; }
2024-04-08 21:48:15 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2024-05-04 23:59:55 +04:00
public OrderStatus? Status { get; set; }
}
}