Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreFileImplement/Models/Implementer.cs

89 lines
2.7 KiB
C#
Raw Normal View History

2023-04-17 18:24:21 +04:00
using JewelryStoreContracts.BindingModels;
using JewelryStoreContracts.ViewModels;
using JewelryStoreDataModels.Models;
using System;
2023-04-17 18:24:02 +04:00
using System.Collections.Generic;
using System.Linq;
2023-05-09 22:09:41 +04:00
using System.Runtime.Serialization;
2023-04-17 18:24:02 +04:00
using System.Text;
using System.Threading.Tasks;
2023-04-17 18:24:21 +04:00
using System.Xml.Linq;
2023-04-17 18:24:02 +04:00
namespace JewelryStoreFileImplement.Models
{
2023-04-17 18:24:21 +04:00
public class Implementer : IImplementerModel
2023-04-17 18:24:02 +04:00
{
2023-05-09 22:09:41 +04:00
[DataMember]
public string ImplementerFIO { get; private set; } = string.Empty;
[DataMember]
public string Password { get; private set; } = string.Empty;
[DataMember]
public int WorkExperience { get; private set; }
[DataMember]
public int Qualification { get; private set; }
[DataMember]
public int Id { get; private set; }
2023-04-17 18:24:21 +04:00
public static Implementer? Create(XElement element)
{
if (element == null)
{
return null;
}
return new()
{
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()
{
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,
WorkExperience = WorkExperience
};
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)
);
2023-04-17 18:24:02 +04:00
}
}