using FishFactoryContracts.BindingModels; using FishFactoryContracts.ViewModels; using FishFactoryDataModel.Models; using System.Xml.Linq; namespace FishFactoryFileImplement.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(ImplementerBindingModel model) { if (model == null) { return null; } return new() { 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, ImplementerFIO = ImplementerFIO, Qualification = Qualification, ImplementerFIO = ImplementerFIO, }; public XElement GetXElement => new("Implementer", new XAttribute("Id", Id), new XElement("Password", Password), new XElement("ImplementerFIO", ImplementerFIO), new XElement("Qualification", Qualification), new XElement("WorkExperience", WorkExperience) ); } }