SUBD_Labs/BeautySalonDataModels/Models/IMasterModel.cs

10 lines
241 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
namespace BeautySalonDataModels.Models
{
public interface IMasterModel : IId
{
string MasterFIO { get; }
2023-05-13 23:36:15 +04:00
double Wage { get; }
public Dictionary<int, (IServiceModel, double)> MasterServices { get; }
2023-05-13 13:37:59 +04:00
}
}