CourseWork_Factory/FactoryView/FactoryDataModels/Models/ILatheModel.cs

17 lines
378 B
C#
Raw Normal View History

2023-04-08 17:25:12 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FactoryDataModels.Models
{
public interface ILatheModel : IId
{
string LatheName { get; }
int MasterId { get; }
int BusyId { get; }
Dictionary<int, (IReinforcedModel, int)> LatheReinforcedes { get; }
}
}