using FoodOrdersDataModels.Models; using HardwareShopDataModels.Models; using System.ComponentModel; namespace FoodOrdersContracts.ViewModels { public class CommentViewModel : ICommentModel { public string Text => throw new NotImplementedException(); public int BuildID => throw new NotImplementedException(); public int Id => throw new NotImplementedException(); } }