148 lines
4.7 KiB
C#
Raw Normal View History

2024-03-24 13:58:43 +04:00
using Microsoft.EntityFrameworkCore;
using ShipyardContracts.BindingModels;
using ShipyardContracts.SearchModels;
using ShipyardContracts.StoragesContracts;
using ShipyardContracts.ViewModels;
using ShipyardDataBaseImplement.Models;
namespace ShipyardDataBaseImplement.Implements
{
public class OrderStorage : IOrderStorage
{
public OrderViewModel? Delete(OrderBindingModel model)
{
using var context = new ShipyardDataBase();
var element = context.Orders
.FirstOrDefault(rec => rec.Id == model.Id);
if (element != null)
{
var deletedElement = context.Orders
.Include(x => x.Ship)
2024-04-05 13:29:30 +04:00
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
.FirstOrDefault(x => x.Id == model.Id)
2024-03-24 13:58:43 +04:00
?.GetViewModel;
context.Orders.Remove(element);
context.SaveChanges();
return deletedElement;
}
return null;
}
public OrderViewModel? GetElement(OrderSearchModel model)
{
2024-04-21 20:39:51 +04:00
using var context = new ShipyardDataBase();
if (model.ImplementerId.HasValue && model.Status.HasValue)
{
return context.Orders
.Include(x => x.Ship)
.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.Ship)
.Include(x => x.Client)
.Include(x => x.Implementer)
.FirstOrDefault(x => x.ImplementerId == model.ImplementerId)
?.GetViewModel;
}
if (!model.Id.HasValue)
2024-03-24 13:58:43 +04:00
{
return null;
}
return context.Orders
.Include(x => x.Ship)
2024-04-05 13:29:30 +04:00
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
2024-03-24 13:58:43 +04:00
.FirstOrDefault(x => model.Id.HasValue && x.Id == model.Id)
?.GetViewModel;
}
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
{
2024-04-05 10:20:47 +04:00
using var context = new ShipyardDataBase();
2024-04-21 20:39:51 +04:00
if (model.DateFrom.HasValue && model.DateTo.HasValue)
{
2024-04-05 13:29:30 +04:00
return context.Orders
.Include(x => x.Ship)
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
.Where(x => x.DateCreate >= model.DateFrom && x.DateCreate <= model.DateTo)
.Select(x => x.GetViewModel)
2024-04-05 13:29:30 +04:00
.ToList();
2024-03-24 13:58:43 +04:00
}
2024-04-21 20:39:51 +04:00
else if (model.ClientId.HasValue)
{
2024-04-05 10:20:47 +04:00
return context.Orders
2024-04-05 13:29:30 +04:00
.Include(x => x.Ship)
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
.Where(x => x.ClientId == model.ClientId)
.Select(x => x.GetViewModel)
2024-04-05 13:29:30 +04:00
.ToList();
2024-04-05 10:20:47 +04:00
}
2024-04-21 20:39:51 +04:00
else if (model.Status.HasValue)
{
2024-04-05 13:29:30 +04:00
return context.Orders
2024-03-24 13:58:43 +04:00
.Include(x => x.Ship)
2024-04-05 13:29:30 +04:00
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
.Where(x => x.Id == model.Id)
.Select(x => x.GetViewModel)
2024-03-24 13:58:43 +04:00
.ToList();
2024-04-05 13:29:30 +04:00
}
2024-04-21 20:39:51 +04:00
return new();
}
2024-03-24 13:58:43 +04:00
public List<OrderViewModel> GetFullList()
{
using var context = new ShipyardDataBase();
return context.Orders
.Include(x => x.Ship)
2024-04-05 13:29:30 +04:00
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
2024-04-05 13:29:30 +04:00
.Select(x => x.GetViewModel)
2024-03-24 13:58:43 +04:00
.ToList();
}
public OrderViewModel? Insert(OrderBindingModel model)
{
var newOrder = Order.Create(model);
if (newOrder == null)
{
return null;
}
using var context = new ShipyardDataBase();
context.Orders.Add(newOrder);
context.SaveChanges();
return context.Orders
.Include(x => x.Ship)
2024-04-05 13:29:30 +04:00
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
2024-04-05 13:29:30 +04:00
.FirstOrDefault(x => x.Id == newOrder.Id)
2024-03-24 13:58:43 +04:00
?.GetViewModel;
}
public OrderViewModel? Update(OrderBindingModel model)
{
using var context = new ShipyardDataBase();
var order = context.Orders.FirstOrDefault(x => x.Id == model.Id);
if (order == null)
{
return null;
}
order.Update(model);
context.SaveChanges();
return context.Orders
.Include(x => x.Ship)
2024-04-05 13:29:30 +04:00
.Include(x => x.Client)
2024-04-21 20:39:51 +04:00
.Include(x => x.Implementer)
2024-04-05 13:29:30 +04:00
.FirstOrDefault(x => x.Id == model.Id)
2024-03-24 13:58:43 +04:00
?.GetViewModel;
}
}
}