Шаг 2. Переименования шага 1
This commit is contained in:
parent
78853ea6e1
commit
f9296b7d5c
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace PrecastConcretePlantDataModels.Enums
|
||||
{
|
||||
internal enum OrderStatus
|
||||
public enum OrderStatus
|
||||
{
|
||||
Неизвестен = -1,
|
||||
Принят = 0,
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace PrecastConcretePlantDataModels
|
||||
{
|
||||
internal interface IId
|
||||
public interface IId
|
||||
{
|
||||
int Id { get; }
|
||||
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace PrecastConcretePlantDataModels.Models
|
||||
{
|
||||
internal interface IComponentModel : IId
|
||||
public interface IComponentModel : IId
|
||||
{
|
||||
string ComponentName { get; }
|
||||
double Cost { get; }
|
||||
|
@ -7,7 +7,7 @@ using PrecastConcretePlantDataModels.Enums;
|
||||
|
||||
namespace PrecastConcretePlantDataModels.Enums
|
||||
{
|
||||
internal interface IOrderModel : IId
|
||||
public interface IOrderModel : IId
|
||||
{
|
||||
int ProductId { get; }
|
||||
int Count { get; }
|
||||
|
@ -6,10 +6,10 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace PrecastConcretePlantDataModels.Models
|
||||
{
|
||||
internal interface IProductModel : IId
|
||||
public interface IReinforcedModel : IId
|
||||
{
|
||||
string ProductName { get; }
|
||||
string ReinforcedName { get; }
|
||||
double Price { get; }
|
||||
Dictionary<int, (IComponentModel, int)> ProductComponents { get; }
|
||||
Dictionary<int, (IComponentModel, int)> ReinforcedComponents { get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user