Создание сущностей Headset, Orders, SalesSalons
This commit is contained in:
parent
609c801c3d
commit
30c107a2fa
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FurnitureFactoryDataModels.Models
|
||||
{
|
||||
internal interface IHeadsetModel : IId
|
||||
{
|
||||
int Cost { get;}
|
||||
string Size { get; }
|
||||
public Dictionary<int, IHeadsetModuleModel> HeadsetModuleId { get; }
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FurnitureFactoryDataModels.Models
|
||||
{
|
||||
internal interface IOrdersModel : IId
|
||||
{
|
||||
DateTime Date { get; }
|
||||
string Status { get; }
|
||||
public Dictionary<int, IFurnitureModel> FurnitureId { get; }
|
||||
public Dictionary<int, IHeadsetModel> HeadsetId { get; }
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FurnitureFactoryDataModels.Models
|
||||
{
|
||||
internal interface ISalesSalonsModel : IId
|
||||
{
|
||||
string Name { get; }
|
||||
string Address { get; }
|
||||
public Dictionary<int, IOrdersModel> OrdersId { get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user