namespace BeautySalonDataModels.Models
{
public interface IMasterModel : IId
string MasterFIO { get; }
double Wage { get; }
public Dictionary<int, (IServiceModel, double)> MasterServices { get; }
}