CourseWork_CompShop/ComputerShopProvider/ComputerShopDataModels/Models/IAssemblyModel.cs

16 lines
361 B
C#
Raw Normal View History

2023-04-05 18:31:49 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
public interface IAssemblyModel : IId
{
string AssemblyName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> AssemblyComponents { get; }
}
}