71 lines
2.1 KiB
C#
Raw Permalink Normal View History

2024-05-13 16:49:39 +04:00
using DinerContracts.BindingModels;
using DinerContracts.ViewModels;
using DinerDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace DinerFileImplement.Models {
public class Implementer : IImplementerModel {
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 int ID { get; set; }
public static Implementer? Create(ImplementerBindingModel? model) {
if (model == null) {
return null;
}
return new Implementer() {
ImplementerFIO = model.ImplementerFIO,
Password = model.Password,
WorkExperience = model.WorkExperience,
Qualification = model.Qualification,
ID = model.ID
};
}
public static Implementer? Create(XElement element) {
if (element == null) {
return null;
}
return new Implementer() {
ImplementerFIO = element.Element("ImplementerFIO")!.Value,
Password = element.Element("Password")!.Value,
WorkExperience = Convert.ToInt32(element.Element("WorkExperience")!.Value),
Qualification = Convert.ToInt32(element.Element("Qualification")!.Value),
ID = Convert.ToInt32(element.Element("ID")!.Value)
};
}
public void Update (ImplementerBindingModel? model) {
if (model == null) {
return;
}
ImplementerFIO = model.ImplementerFIO;
Password = model.Password;
Qualification = model.Qualification;
}
public ImplementerViewModel GetViewModel => new() {
ImplementerFIO = ImplementerFIO,
Password = Password,
Qualification = Qualification,
WorkExperience = WorkExperience,
ID = ID
};
public XElement GetXElement => new("Implementer", new XAttribute("ID", ID),
new XElement("ImplementerFIO", ImplementerFIO),
new XElement("Password", Password),
new XElement("Qualification", Qualification.ToString()),
new XElement("WorkExperience", WorkExperience.ToString()),
new XAttribute("ID", ID));
}
}