2023-04-05 22:22:20 +04:00
|
|
|
|
using FurnitureFactoryDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureContracts.BindingModels
|
|
|
|
|
{
|
2023-04-06 00:02:51 +04:00
|
|
|
|
public class HeadsetModuleBindingModel : IHeadsetModuleModel
|
2023-04-05 22:22:20 +04:00
|
|
|
|
{
|
|
|
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Cost { get; set; }
|
|
|
|
|
|
2023-04-08 00:35:02 +04:00
|
|
|
|
public int MasterId { get; set; }
|
2023-04-05 22:22:20 +04:00
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2023-04-08 00:35:02 +04:00
|
|
|
|
|
|
|
|
|
public string MasterName { get; set; } = string.Empty;
|
|
|
|
|
|
2023-04-08 16:14:43 +04:00
|
|
|
|
public Dictionary<int, IMaterialModel> HeadsetModuleMaterial { get; set; }
|
2023-04-08 21:01:58 +04:00
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
2023-05-19 19:15:38 +04:00
|
|
|
|
public DateTime DateIssue { get; set; }
|
2023-04-08 21:01:58 +04:00
|
|
|
|
|
2023-05-19 19:15:38 +04:00
|
|
|
|
public DateTime DateDelivery { get; set; }
|
2023-04-05 22:22:20 +04:00
|
|
|
|
}
|
|
|
|
|
}
|