ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryContracts/SearchModels/OrderSearchModel.cs

20 lines
479 B
C#
Raw Normal View History

2024-06-03 21:54:03 +04:00
using ConfectioneryDataModels.Enums;
using System;
2024-02-15 22:48:13 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.SearchModels
{
2024-06-03 21:54:03 +04:00
public class OrderSearchModel
{
public int? Id { get; set; }
public int? ClientId { get; set; }
public OrderStatus? Status { get; set; }
public int? ImplementerId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
2024-02-15 22:48:13 +04:00
}