SUBD_Labs/BeauySalonContracts/ViewModels/MasterViewModel.cs

16 lines
505 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
using BeautySalonDataModels.Models;
using System.ComponentModel;
namespace BeautySalonContracts.ViewModels
{
public class MasterViewModel : IMasterModel
{
public int Id { get; set; }
[DisplayName("ФИО мастера")]
public string MasterFIO { get; set; } = string.Empty;
2023-05-13 23:36:15 +04:00
[DisplayName("Зарплата")]
public double Wage { get; set; }
public Dictionary<int, (IServiceModel, double)> MasterServices { get; set; } = new();
2023-05-13 13:37:59 +04:00
}
}