2023-04-01 19:20:54 +04:00
|
|
|
|
using HotelDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
2023-05-16 19:43:06 +04:00
|
|
|
|
using Newtonsoft.Json;
|
2023-04-01 19:20:54 +04:00
|
|
|
|
|
|
|
|
|
namespace HotelContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class MealPlanViewModel : IMealPlanModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Название плана питания")]
|
|
|
|
|
public string MealPlanName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[DisplayName("Цена плана питания")]
|
|
|
|
|
public double MealPlanPrice { get; set; }
|
|
|
|
|
|
|
|
|
|
public int OrganiserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2023-04-02 16:19:39 +04:00
|
|
|
|
|
2023-05-16 19:43:06 +04:00
|
|
|
|
public Dictionary<int, IMemberModel> MealPlanMembers { get; set; } = new();
|
2023-04-07 13:49:59 +04:00
|
|
|
|
public Dictionary<int, IRoomModel> MealPlanRooms { get; set; }
|
2023-05-16 19:43:06 +04:00
|
|
|
|
|
|
|
|
|
public MealPlanViewModel() { }
|
|
|
|
|
|
|
|
|
|
[JsonConstructor]
|
|
|
|
|
public MealPlanViewModel(Dictionary<int, MemberViewModel> MealPlanMembers)
|
|
|
|
|
{
|
|
|
|
|
this.MealPlanMembers = MealPlanMembers.ToDictionary(x => x.Key, x => x.Value as IMemberModel);
|
|
|
|
|
}
|
2023-04-01 19:20:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|