Реализация моделей данных
This commit is contained in:
parent
a7cebe62b7
commit
6b618795f9
11
HardwareShop/HardwareShopDataModels/Enums/OrderStatus.cs
Normal file
11
HardwareShop/HardwareShopDataModels/Enums/OrderStatus.cs
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
namespace HardwareShopDataModels.Enums
|
||||||
|
{
|
||||||
|
public enum OrderStatus
|
||||||
|
{
|
||||||
|
Неизвестен = -1,
|
||||||
|
Принят = 0,
|
||||||
|
Выполняется = 1,
|
||||||
|
Готов = 2,
|
||||||
|
Выдан = 3,
|
||||||
|
}
|
||||||
|
}
|
@ -1,10 +1,4 @@
|
|||||||
using System;
|
namespace HardwareShopDataModels.Enums
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace HardwareShopDataModels.Enums
|
|
||||||
{
|
{
|
||||||
public enum UserRole
|
public enum UserRole
|
||||||
{
|
{
|
||||||
|
@ -2,5 +2,8 @@
|
|||||||
{
|
{
|
||||||
public interface IComponentModel : IId
|
public interface IComponentModel : IId
|
||||||
{
|
{
|
||||||
|
string ComponentName { get; }
|
||||||
|
double Cost { get; }
|
||||||
|
int UserId { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
using System;
|
namespace HardwareShopDataModels.Models
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace HardwareShopDataModels.Models
|
|
||||||
{
|
{
|
||||||
public interface IGoodModel : IId
|
public interface IGoodModel : IId
|
||||||
{
|
{
|
||||||
|
string GoodName { get; }
|
||||||
|
double Price { get; }
|
||||||
|
int UserId { get; }
|
||||||
|
Dictionary<int, (IComponentModel, int)> GoodComponents { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,15 @@
|
|||||||
namespace HardwareShopDataModels.Models
|
using HardwareShopDataModels.Enums;
|
||||||
|
|
||||||
|
namespace HardwareShopDataModels.Models
|
||||||
{
|
{
|
||||||
public interface IOrderModel : IId
|
public interface IOrderModel : IId
|
||||||
{
|
{
|
||||||
|
int GoodId { get; }
|
||||||
|
int UserId { get; }
|
||||||
|
int Count { get; }
|
||||||
|
double Sum { get; }
|
||||||
|
OrderStatus Status { get; }
|
||||||
|
DateTime DateCreate { get; }
|
||||||
|
DateTime? DateImplement { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user