PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopDataBaseImplement/Implements/OrderStorage.cs

176 lines
6.4 KiB
C#
Raw Permalink Normal View History

2024-03-04 22:33:22 +04:00
using ComputersShopContracts.BindingModels;
using ComputersShopContracts.SearchModels;
2024-05-12 11:23:15 +04:00
using ComputersShopContracts.StorageContracts;
2024-03-04 22:33:22 +04:00
using ComputersShopContracts.ViewModels;
using ComputersShopDataBaseImplement.Models;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataBaseImplement.Implements
{
2024-04-16 23:11:45 +04:00
public class OrderStorage : IOrderStorage
{
public OrderViewModel? Delete(OrderBindingModel model)
{
using var context = new ComputersShopDataBase();
var element = context.Orders
.FirstOrDefault(rec => rec.Id == model.Id);
if (element != null)
{
var deletedElement = context.Orders
.Include(x => x.Computer)
2024-04-14 16:11:19 +04:00
.Include(x => x.Client)
.Include(x => x.Implementer)
2024-04-01 20:00:17 +04:00
.FirstOrDefault(x => x.Id == model.Id)
2024-04-16 23:11:45 +04:00
?.GetViewModel;
context.Orders.Remove(element);
context.SaveChanges();
return deletedElement;
}
return null;
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
public OrderViewModel? GetElement(OrderSearchModel model)
{
if (!model.Id.HasValue)
{
return null;
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
using var context = new ComputersShopDataBase();
if (model.ImplementerId.HasValue && model.Status.HasValue)
{
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
.Include(x => x.Implementer)
.FirstOrDefault(x => x.ImplementerId == model.ImplementerId && x.Status == model.Status)
?.GetViewModel;
}
if (model.ImplementerId.HasValue)
{
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
.Include(x => x.Implementer)
.FirstOrDefault(x => x.ImplementerId == model.ImplementerId)
?.GetViewModel;
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
2024-04-16 23:11:45 +04:00
.FirstOrDefault(x => model.Id.HasValue && x.Id == model.Id)
2024-04-01 20:00:17 +04:00
?.GetViewModel;
2024-04-16 23:11:45 +04:00
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
{
using var context = new ComputersShopDataBase();
if (model.Id.HasValue)
{
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
2024-04-01 20:00:17 +04:00
.Where(x => x.Id == model.Id)
2024-04-16 23:11:45 +04:00
.Select(x => x.GetViewModel)
.ToList();
}
else if (model.DateFrom != null && model.DateTo != null)
{
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
2024-04-01 20:00:17 +04:00
.Where(x => x.DateCreate >= model.DateFrom && x.DateCreate <= model.DateTo)
2024-04-16 23:11:45 +04:00
.Select(x => x.GetViewModel)
.ToList();
}
else if (model.ClientId.HasValue)
{
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
.Where(x => x.ClientId == model.ClientId)
2024-04-16 23:11:45 +04:00
.Select(x => x.GetViewModel)
.ToList();
}
2024-04-14 16:11:19 +04:00
else if (model.ImplementerId.HasValue)
2024-04-01 20:00:17 +04:00
{
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
.Where(x => x.ImplementerId == model.ImplementerId)
2024-04-01 20:00:17 +04:00
.Select(x => x.GetViewModel)
.ToList();
}
2024-04-14 16:11:19 +04:00
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
.Include(x => x.Implementer)
.Where(x => model.Status == x.Status)
.Select(x => x.GetViewModel)
.ToList();
2024-03-04 22:33:22 +04:00
}
2024-04-16 23:11:45 +04:00
public List<OrderViewModel> GetFullList()
{
using var context = new ComputersShopDataBase();
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
2024-04-01 20:00:17 +04:00
.Select(x => x.GetViewModel)
2024-04-16 23:11:45 +04:00
.ToList();
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
public OrderViewModel? Insert(OrderBindingModel model)
{
var newOrder = Order.Create(model);
if (newOrder == null)
{
return null;
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
using var context = new ComputersShopDataBase();
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
context.Orders.Add(newOrder);
context.SaveChanges();
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
2024-04-01 20:00:17 +04:00
.FirstOrDefault(x => x.Id == newOrder.Id)
2024-04-16 23:11:45 +04:00
?.GetViewModel;
}
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
public OrderViewModel? Update(OrderBindingModel model)
{
using var context = new ComputersShopDataBase();
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
var order = context.Orders.Include(x => x.Client).FirstOrDefault(x => x.Id == model.Id);
2024-03-04 22:33:22 +04:00
2024-04-16 23:11:45 +04:00
if (order == null)
{
return null;
}
order.Update(model);
context.SaveChanges();
return context.Orders
.Include(x => x.Computer)
.Include(x => x.Client)
2024-04-14 16:11:19 +04:00
.Include(x => x.Implementer)
2024-04-01 20:00:17 +04:00
.FirstOrDefault(x => x.Id == model.Id)
2024-04-16 23:11:45 +04:00
?.GetViewModel;
}
}
2024-03-04 22:33:22 +04:00
}