Шаг 2. Переименования шага 1

This commit is contained in:
Кашин Максим 2023-01-30 20:25:35 +04:00
parent 78853ea6e1
commit f9296b7d5c
5 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels.Enums
{
internal enum OrderStatus
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels
{
internal interface IId
public interface IId
{
int Id { get; }

View File

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

View File

@ -7,7 +7,7 @@ using PrecastConcretePlantDataModels.Enums;
namespace PrecastConcretePlantDataModels.Enums
{
internal interface IOrderModel : IId
public interface IOrderModel : IId
{
int ProductId { get; }
int Count { get; }

View File

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