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? PurchaseBuilds => throw new NotImplementedException(); public Dictionary PurchaseGoods => throw new NotImplementedException(); } }