77 lines
2.4 KiB
C#
77 lines
2.4 KiB
C#
|
using GiftShopContracts.BindingModels;
|
|||
|
using GiftShopContracts.SearchModels;
|
|||
|
using GiftShopContracts.StoragesContracts;
|
|||
|
using GiftShopContracts.ViewModels;
|
|||
|
using GiftShopDatabaseImplement.Models;
|
|||
|
|
|||
|
namespace GiftShopDatabaseImplement.Implements
|
|||
|
{
|
|||
|
public class OrderStorage : IOrderStorage
|
|||
|
{
|
|||
|
public OrderViewModel? Delete(OrderBindingModel model)
|
|||
|
{
|
|||
|
using var context = new GiftShopDatabase();
|
|||
|
var element = context.Orders.FirstOrDefault(rec => rec.Id == model.Id);
|
|||
|
if (element != null)
|
|||
|
{
|
|||
|
context.Orders.Remove(element);
|
|||
|
context.SaveChanges();
|
|||
|
return element.GetViewModel;
|
|||
|
}
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
public OrderViewModel? GetElement(OrderSearchModel model)
|
|||
|
{
|
|||
|
if (!model.Id.HasValue)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
using var context = new GiftShopDatabase();
|
|||
|
return context.Orders.FirstOrDefault(x => (model.Id.HasValue && x.Id == model.Id))?.GetViewModel;
|
|||
|
}
|
|||
|
|
|||
|
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
|
|||
|
{
|
|||
|
if (!model.Id.HasValue)
|
|||
|
{
|
|||
|
return new();
|
|||
|
}
|
|||
|
using var context = new GiftShopDatabase();
|
|||
|
return context.Orders.Where(x => x.Id == model.Id).Select(x => x.GetViewModel).ToList();
|
|||
|
}
|
|||
|
|
|||
|
public List<OrderViewModel> GetFullList()
|
|||
|
{
|
|||
|
using var context = new GiftShopDatabase();
|
|||
|
return context.Orders.Select(x => x.GetViewModel).ToList();
|
|||
|
}
|
|||
|
|
|||
|
public OrderViewModel? Insert(OrderBindingModel model)
|
|||
|
{
|
|||
|
var newOrder = Order.Create(model);
|
|||
|
if (newOrder == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
using var context = new GiftShopDatabase();
|
|||
|
context.Orders.Add(newOrder);
|
|||
|
context.SaveChanges();
|
|||
|
return newOrder.GetViewModel;
|
|||
|
}
|
|||
|
|
|||
|
public OrderViewModel? Update(OrderBindingModel model)
|
|||
|
{
|
|||
|
using var context = new GiftShopDatabase();
|
|||
|
var order = context.Orders.FirstOrDefault(x => x.Id == model.Id);
|
|||
|
if (order == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
order.Update(model);
|
|||
|
context.SaveChanges();
|
|||
|
return order.GetViewModel;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|