2023-04-06 23:41:09 +04:00
|
|
|
|
using ComputerShopContracts.BindingModels;
|
|
|
|
|
using ComputerShopContracts.SearchModels;
|
|
|
|
|
using ComputerShopContracts.StorageContracts;
|
|
|
|
|
using ComputerShopContracts.ViewModels;
|
2023-05-19 18:26:38 +04:00
|
|
|
|
using ComputerShopDatabaseImplement.Models;
|
2023-04-06 23:41:09 +04:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerShopDatabaseImplement.Implements
|
|
|
|
|
{
|
2023-12-01 19:59:06 +04:00
|
|
|
|
public class OrderStorage : IOrderStorage
|
2023-04-06 23:41:09 +04:00
|
|
|
|
{
|
|
|
|
|
public OrderViewModel? Delete(OrderBindingModel model)
|
|
|
|
|
{
|
2023-04-07 16:10:59 +04:00
|
|
|
|
using var context = new ComputerShopDatabase();
|
|
|
|
|
var element = context.Orders.FirstOrDefault(rec => rec.Id ==
|
|
|
|
|
model.Id);
|
|
|
|
|
if (element != null)
|
|
|
|
|
{
|
|
|
|
|
context.Orders.Remove(element);
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
return element.GetViewModel;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
2023-04-06 23:41:09 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OrderViewModel? GetElement(OrderSearchModel model)
|
|
|
|
|
{
|
2023-04-07 16:10:59 +04:00
|
|
|
|
if (!model.Id.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
using var context = new ComputerShopDatabase();
|
2024-07-26 02:49:24 +04:00
|
|
|
|
return context.Orders.FirstOrDefault(x => model.Id.HasValue && x.Id == model.Id)?.GetViewModel;
|
2023-04-06 23:41:09 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
|
|
|
|
|
{
|
2024-07-26 02:49:24 +04:00
|
|
|
|
|
|
|
|
|
if (!model.ClientId.HasValue)
|
2023-12-02 06:42:59 +04:00
|
|
|
|
{
|
2024-07-26 02:49:24 +04:00
|
|
|
|
return new();
|
2023-12-02 06:42:59 +04:00
|
|
|
|
}
|
2024-07-26 02:49:24 +04:00
|
|
|
|
using var context = new ComputerShopDatabase();
|
|
|
|
|
if (model.DateFrom.HasValue & model.DateTo.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return context.Orders
|
|
|
|
|
.Where(x => x.DateCreate >= model.DateFrom && x.DateCreate <= model.DateTo)
|
|
|
|
|
.Include(x => x.OrderComponents).Include(x => x.Client)
|
|
|
|
|
.Select(x => x.GetViewModel)
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
2023-12-02 06:42:59 +04:00
|
|
|
|
|
|
|
|
|
return context.Orders
|
2024-07-26 02:49:24 +04:00
|
|
|
|
.Include(x => x.Components)
|
|
|
|
|
.ThenInclude(x => x.Component)
|
|
|
|
|
.Where(x => x.ClientId == model.ClientId)
|
|
|
|
|
.Select(x => x.GetViewModel)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
2023-12-02 06:42:59 +04:00
|
|
|
|
}
|
2023-04-06 23:41:09 +04:00
|
|
|
|
|
|
|
|
|
public List<OrderViewModel> GetFullList()
|
|
|
|
|
{
|
|
|
|
|
using var context = new ComputerShopDatabase();
|
2023-12-02 06:42:59 +04:00
|
|
|
|
return context.Orders
|
2024-07-26 02:49:24 +04:00
|
|
|
|
.Include(x => x.OrderComponents).Include(x => x.Client)
|
2023-12-02 06:42:59 +04:00
|
|
|
|
.Select(x => x.GetViewModel)
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
2023-04-06 23:41:09 +04:00
|
|
|
|
|
|
|
|
|
public OrderViewModel? Insert(OrderBindingModel model)
|
|
|
|
|
{
|
2024-07-26 02:49:24 +04:00
|
|
|
|
using var context = new ComputerShopDatabase();
|
|
|
|
|
var newOrder = Order.Create(context, model);
|
2023-05-19 18:26:38 +04:00
|
|
|
|
|
|
|
|
|
if (newOrder == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
context.Orders.Add(newOrder);
|
|
|
|
|
context.SaveChanges();
|
2024-07-26 02:49:24 +04:00
|
|
|
|
return newOrder.GetViewModel;
|
|
|
|
|
}
|
2023-04-06 23:41:09 +04:00
|
|
|
|
|
|
|
|
|
public OrderViewModel? Update(OrderBindingModel model)
|
|
|
|
|
{
|
2023-05-19 18:26:38 +04:00
|
|
|
|
using var context = new ComputerShopDatabase();
|
|
|
|
|
var order = context.Orders.FirstOrDefault(x => x.Id == model.Id);
|
|
|
|
|
if (order == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
order.Update(model);
|
|
|
|
|
context.SaveChanges();
|
2024-07-26 02:49:24 +04:00
|
|
|
|
return order.GetViewModel;
|
2023-04-06 23:41:09 +04:00
|
|
|
|
}
|
2024-07-26 02:49:24 +04:00
|
|
|
|
|
|
|
|
|
public ComponentViewModel? GetComponentsByOrder(OrderSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
using var context = new ComputerShopDatabase();
|
|
|
|
|
var order_components = context.OrderComponents.FirstOrDefault(x => x.OrderId == model.Id);
|
|
|
|
|
if (order_components == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
var components = context.Components.FirstOrDefault(x => x.Id == order_components.Id);
|
|
|
|
|
if (components == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return components.GetViewModel;
|
|
|
|
|
}
|
2023-04-06 23:41:09 +04:00
|
|
|
|
}
|
|
|
|
|
}
|