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; }
    }
}