127 lines
3.9 KiB
C#
127 lines
3.9 KiB
C#
using AircraftPlantContracts.BindingModels;
|
||
using AircraftPlantContracts.ViewModels;
|
||
using AircraftPlantDataModels.Models;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using System.Xml.Linq;
|
||
|
||
namespace AircraftPlantFileImplement.Models
|
||
{
|
||
/// <summary>
|
||
/// Сущность "Исполнитель"
|
||
/// </summary>
|
||
public class Implementer : IImplementerModel
|
||
{
|
||
/// <summary>
|
||
/// Идентификатор
|
||
/// </summary>
|
||
public int Id { get; private set; }
|
||
|
||
/// <summary>
|
||
/// ФИО исполнителя
|
||
/// </summary>
|
||
public string ImplementerFIO { get; private set; } = string.Empty;
|
||
|
||
/// <summary>
|
||
/// Пароль
|
||
/// </summary>
|
||
public string Password { get; private set; } = string.Empty;
|
||
|
||
/// <summary>
|
||
/// Опыт работы
|
||
/// </summary>
|
||
public int WorkExperience { get; private set; }
|
||
|
||
/// <summary>
|
||
/// Квалификация
|
||
/// </summary>
|
||
public int Qualification { get; private set; }
|
||
|
||
/// <summary>
|
||
/// Создание модели исполнителя
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
/// <returns></returns>
|
||
public static Implementer? Create(ImplementerBindingModel? model)
|
||
{
|
||
if (model == null)
|
||
{
|
||
return null;
|
||
}
|
||
|
||
return new Implementer()
|
||
{
|
||
Id = model.Id,
|
||
ImplementerFIO = model.ImplementerFIO,
|
||
Password = model.Password,
|
||
WorkExperience = model.WorkExperience,
|
||
Qualification = model.Qualification,
|
||
};
|
||
}
|
||
|
||
/// <summary>
|
||
/// Создание модели исполнителя из данных файла
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
/// <returns></returns>
|
||
public static Implementer? Create(XElement element)
|
||
{
|
||
if (element == null)
|
||
{
|
||
return null;
|
||
}
|
||
|
||
return new Implementer()
|
||
{
|
||
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
|
||
ImplementerFIO = element.Element("ImplementerFIO")!.Value,
|
||
Password = element.Element("Password")!.Value,
|
||
WorkExperience = Convert.ToInt32(element.Element("WorkExperience")!.Value),
|
||
Qualification = Convert.ToInt32(element.Element("Qualification")!.Value)
|
||
};
|
||
}
|
||
|
||
/// <summary>
|
||
/// Изменение модели исполнителя
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
public void Update(ImplementerBindingModel? model)
|
||
{
|
||
if (model == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
ImplementerFIO = model.ImplementerFIO;
|
||
Password = model.Password;
|
||
WorkExperience = model.WorkExperience;
|
||
Qualification = model.Qualification;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Получение модели исполнителя
|
||
/// </summary>
|
||
public ImplementerViewModel GetViewModel => new()
|
||
{
|
||
Id = Id,
|
||
ImplementerFIO = ImplementerFIO,
|
||
Password = Password,
|
||
WorkExperience = WorkExperience,
|
||
Qualification = Qualification
|
||
};
|
||
|
||
/// <summary>
|
||
/// Запись данных о модели исполнителя в файл
|
||
/// </summary>
|
||
public XElement GetXElement => new("Implementer",
|
||
new XAttribute("Id", Id),
|
||
new XElement("ImplementerFIO", ImplementerFIO),
|
||
new XElement("Password", Password),
|
||
new XElement("WorkExperience", WorkExperience),
|
||
new XElement("Qualification", Qualification));
|
||
}
|
||
}
|