Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/PurchaseViewModel.cs

24 lines
815 B
C#
Raw Normal View History

using FoodOrdersDataModels.Enums;
using FoodOrdersDataModels.Models;
using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace FoodOrdersContracts.ViewModels
{
public class PurachaseViewModel : IPurchaseModel
{
public int Id => throw new NotImplementedException();
public decimal Sum => throw new NotImplementedException();
public PurchaseStatus Status => throw new NotImplementedException();
public DateTime? DatePurchase => throw new NotImplementedException();
public int UserID => throw new NotImplementedException();
public Dictionary<int, (IBuildModel, int)>? PurchaseBuilds => throw new NotImplementedException();
public Dictionary<int, (IGoodModel, int)> PurchaseGoods => throw new NotImplementedException();
}
}