CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/OrderSearchModel.cs

19 lines
470 B
C#
Raw Normal View History

2024-04-27 13:01:57 +04:00
using ElectronicsShopDataModels.Enums;
2024-05-19 15:26:28 +04:00
using ElectronicsShopDataModels.Models;
2024-04-27 13:01:57 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.SearchModels
{
public class OrderSearchModel
{
public int? ID { get; set; }
2024-05-19 17:52:59 +04:00
public int? ClientID { get; set; }
2024-04-27 13:01:57 +04:00
public DateTime? DateFrom { get; set; }
2024-05-25 13:06:38 +04:00
public DateTime? DateTo { get; set;}
2024-04-27 13:01:57 +04:00
}
}