CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/ViewModels/ReportPurchaseReceivingViewModel.cs

19 lines
487 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class ReportPurchaseReceivingViewModel
{
public int UserId { get; set; }
public int ComponentId { get; set; }
public string ComponentName { get; } = String.Empty;
public DateTime PurchaseDateCreating { get; set; }
public DateTime ReceivingDate { get; set; }
}
}