using CarRepairShopContracts.BindingModels; using CarRepairShopContracts.ViewModels; using CarRepairShopDataModels.Models; using System.Xml.Linq; namespace CarRepairShopFileImplement.Models { public class Implementer : IImplementerModel { public int Id { get; set; } public string ImplementerFIO { get; set; } = string.Empty; public string Password { get; set; } = string.Empty; public int WorkExperience { get; set; } public int Qualification { get; set; } 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 }; } 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) }; } public void Update(ImplementerBindingModel? model) { if (model == null) { return; } ImplementerFIO = model.ImplementerFIO; Password = model.Password; WorkExperience = model.WorkExperience; Qualification = model.Qualification; } public ImplementerViewModel GetViewModel => new() { Id = Id, ImplementerFIO = ImplementerFIO, Password = Password, WorkExperience = WorkExperience, Qualification = Qualification }; 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) ); } }