2023-04-05 18:59:50 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerStoreDataModels.Models
|
|
|
|
|
{
|
2023-04-05 19:02:12 +04:00
|
|
|
|
public interface IPCModel : IID
|
2023-04-05 18:59:50 +04:00
|
|
|
|
{
|
2023-04-05 19:02:12 +04:00
|
|
|
|
string Name { get; }
|
|
|
|
|
double Price { get; }
|
2023-04-06 17:00:40 +04:00
|
|
|
|
public int EmployeeID { get; }
|
2023-04-05 21:23:13 +04:00
|
|
|
|
public int RequestID { get; }
|
2023-04-05 19:02:12 +04:00
|
|
|
|
Dictionary<int,(IComponentModel,int)> PCComponents { get; }
|
2023-04-05 18:59:50 +04:00
|
|
|
|
}
|
|
|
|
|
}
|