CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/ViewModels/ReportPurchaseSupplyViewModel.cs

18 lines
488 B
C#
Raw Normal View History

2023-05-17 14:20:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class ReportPurchaseSupplyViewModel
{
public int UserId { get; set; }
public int ComponentId { get; set; }
public string ComponentName { get; } = String.Empty;
public DateTime PurchaseDateCreating { get; set; }
public DateTime SupplyDateCreating { get; set; }
}
}