PIbd22_Kuznetsov_A.V._Sewin.../SewingDresses/SewingDressesFileImplement/Models/Component.cs

64 lines
1.9 KiB
C#
Raw Normal View History

2024-05-04 19:42:41 +04:00
using SewingDressesContracts.BindingModels;
using SewingDressesContracts.ViewModels;
using SewingDressesDataModels.Models;
2024-06-22 21:11:56 +04:00
using System.Runtime.Serialization;
2024-05-04 19:42:41 +04:00
using System.Xml.Linq;
namespace SewingDressesFileImplement.Models
{
2024-06-22 21:11:56 +04:00
[DataContract]
2024-05-04 19:42:41 +04:00
public class Component : IComponentModel
{
2024-06-22 21:11:56 +04:00
[DataMember]
2024-05-04 19:42:41 +04:00
public int Id { get; private set; }
2024-06-22 21:11:56 +04:00
[DataMember]
2024-05-04 19:42:41 +04:00
public string ComponentName { get; private set; } = string.Empty;
2024-06-22 21:11:56 +04:00
[DataMember]
2024-05-04 19:42:41 +04:00
public double Cost { get; private set; }
public static Component? Create(ComponentBindingModel model)
{
if (model == null)
{
return null;
}
return new Component()
{
Id = model.Id,
ComponentName = model.ComponentName,
Cost = model.Cost
};
}
public static Component? Create(XElement element)
{
if (element == null)
{
return null;
}
return new Component()
{
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
ComponentName = element.Element("ComponentName")!.Value,
Cost = Convert.ToDouble(element.Element("Cost")!.Value, new System.Globalization.CultureInfo("en-US"))
};
}
public void Update(ComponentBindingModel model)
{
if (model == null)
{ return; }
ComponentName = model.ComponentName;
Cost = model.Cost;
}
public ComponentViewModel GetViewModel => new()
{
Id = Id,
ComponentName = ComponentName,
Cost = Cost
};
public XElement GetXElement => new("Component",
new XAttribute("Id", Id),
new XElement("ComponentName", ComponentName),
new XElement("Cost", Cost.ToString()));
}
}