Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/GoodViewModel.cs

16 lines
354 B
C#

using FoodOrdersDataModels.Enums;
using HardwareShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FoodOrdersContracts.ViewModels
{
public class GoodViewModel : IGoodModel
{
public int Id => throw new NotImplementedException();
}
}