ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationFileImplement/Models/Component.cs

66 lines
1.9 KiB
C#
Raw Permalink Normal View History

2024-04-07 17:05:30 +04:00
using SoftwareInstallationContracts.BindingModels;
using SoftwareInstallationContracts.ViewModels;
using SoftwareInstallationDataModels.Models;
2024-06-17 19:27:42 +04:00
using System.Runtime.Serialization;
2024-04-07 17:05:30 +04:00
using System.Xml.Linq;
namespace SoftwareInstallationFileImplement.Models
{
2024-06-17 19:27:42 +04:00
[DataContract]
2024-04-07 17:05:30 +04:00
public class Component : IComponentModel
{
2024-06-17 19:27:42 +04:00
[DataMember]
2024-04-07 17:05:30 +04:00
public int Id { get; private set; }
2024-06-17 19:27:42 +04:00
[DataMember]
2024-04-07 17:05:30 +04:00
public string ComponentName { get; private set; } = string.Empty;
2024-06-17 19:27:42 +04:00
[DataMember]
2024-04-07 17:05:30 +04:00
public double Cost { get; set; }
2024-06-17 19:27:42 +04:00
public static Component? Create(ComponentBindingModel model)
2024-04-07 17:05:30 +04:00
{
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)
};
}
2024-04-07 17:40:43 +04:00
public void Update(ComponentBindingModel? model)
2024-04-07 17:05:30 +04:00
{
if (model == null)
{
return;
}
ComponentName = model.ComponentName;
Cost = model.Cost;
}
public ComponentViewModel GetViewModel => new()
{
Id = Id,
ComponentName = ComponentName,
Cost = Cost
};
2024-04-07 17:40:43 +04:00
2024-04-07 17:05:30 +04:00
public XElement GetXElement => new("Component",
2024-04-07 17:40:43 +04:00
new XAttribute("Id", Id),
new XElement("ComponentName", ComponentName),
new XElement("Cost", Cost.ToString()));
2024-04-07 17:05:30 +04:00
}
}