2024-03-12 21:53:13 +04:00
|
|
|
|
using PizzeriaContracts.BindingModels;
|
2024-03-12 23:45:49 +04:00
|
|
|
|
using PizzeriaContracts.ViewModels;
|
2024-03-12 21:53:13 +04:00
|
|
|
|
using PizzeriaDataModels.Models;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
|
2024-03-12 23:45:49 +04:00
|
|
|
|
namespace PizzeriaFileImplement.Models
|
2024-03-12 21:53:13 +04:00
|
|
|
|
{
|
|
|
|
|
public class Component : IComponentModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; private set; }
|
|
|
|
|
public string ComponentName { get; private set; } = string.Empty;
|
|
|
|
|
public double Cost { get; 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)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
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",
|
2024-03-12 23:45:49 +04:00
|
|
|
|
new XAttribute("Id", Id),
|
|
|
|
|
new XElement("ComponentName", ComponentName),
|
|
|
|
|
new XElement("Cost", Cost.ToString()));
|
2024-03-12 21:53:13 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|