77 lines
2.2 KiB
C#
77 lines
2.2 KiB
C#
using System.Xml.Linq;
|
|
using SushiBarContracts.BindingModels;
|
|
using SushiBarContracts.ViewModels;
|
|
using SushiBarDataModels.Models;
|
|
|
|
namespace SushiBarFileImplement.Models;
|
|
|
|
public class Implementer : IImplementerModel
|
|
{
|
|
public int Id { get; private set; }
|
|
public string ImplementerFio { get; private set; } = string.Empty;
|
|
public string Password { get; private set; } = string.Empty;
|
|
public int WorkExperience { get; private set; }
|
|
public int Qualification { get; private set; }
|
|
|
|
public static Implementer? Create(XElement? element)
|
|
{
|
|
if (element == null)
|
|
{
|
|
return null;
|
|
}
|
|
return new Implementer
|
|
{
|
|
ImplementerFio = element.Element("FIO")!.Value,
|
|
Password = element.Element("Password")!.Value,
|
|
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
|
|
Qualification = Convert.ToInt32(element.Element("Qualification")!.Value),
|
|
WorkExperience = Convert.ToInt32(element.Element("WorkExperience")!.Value),
|
|
};
|
|
}
|
|
|
|
public static Implementer? Create(ImplementerBindingModel? model)
|
|
{
|
|
if (model == null)
|
|
{
|
|
return null;
|
|
}
|
|
return new Implementer
|
|
{
|
|
Id = model.Id,
|
|
Password = model.Password,
|
|
Qualification = model.Qualification,
|
|
ImplementerFio = model.ImplementerFio,
|
|
WorkExperience = model.WorkExperience,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
public void Update(ImplementerBindingModel? model)
|
|
{
|
|
if (model == null)
|
|
{
|
|
return;
|
|
}
|
|
Password = model.Password;
|
|
Qualification = model.Qualification;
|
|
ImplementerFio = model.ImplementerFio;
|
|
WorkExperience = model.WorkExperience;
|
|
}
|
|
|
|
public ImplementerViewModel GetViewModel => new()
|
|
{
|
|
Id = Id,
|
|
Password = Password,
|
|
Qualification = Qualification,
|
|
ImplementerFio = ImplementerFio,
|
|
};
|
|
|
|
public XElement GetXElement => new("Client",
|
|
new XAttribute("Id", Id),
|
|
new XElement("Password", Password),
|
|
new XElement("FIO", ImplementerFio),
|
|
new XElement("Qualification", Qualification),
|
|
new XElement("WorkExperience", WorkExperience)
|
|
);
|
|
} |