PIbd-22-Stroev-V.M.-Plumbin.../PlumbingRepair/PlumbingRepairDataModels/Models/IWorkModel.cs

16 lines
351 B
C#
Raw Permalink Normal View History

2024-02-13 23:15:11 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairDataModels.Models
{
2024-02-14 11:14:37 +04:00
public interface IWorkModel : IId
2024-02-13 23:15:11 +04:00
{
2024-02-14 11:14:37 +04:00
string WorkName { get; }
2024-02-13 23:15:11 +04:00
double Price { get; }
2024-02-14 11:14:37 +04:00
Dictionary<int, (IComponentModel, int)> WorkComponents { get; }
2024-02-13 23:15:11 +04:00
}
}