2023-03-06 10:20:01 +04:00
|
|
|
|
using ConfectioneryContracts.BindingModels;
|
|
|
|
|
using ConfectioneryContracts.SearchModels;
|
|
|
|
|
using ConfectioneryContracts.StoragesContracts;
|
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
|
|
|
|
using ConfectioneryDataBaseImplement.Models;
|
2023-04-03 10:49:52 +04:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2023-03-06 10:20:01 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryDataBaseImplement.Implements
|
|
|
|
|
{
|
|
|
|
|
public class OrderStorage : IOrderStorage
|
|
|
|
|
{
|
|
|
|
|
public List<OrderViewModel> GetFullList()
|
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
2023-04-27 22:54:15 +04:00
|
|
|
|
return context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
2023-03-06 10:20:01 +04:00
|
|
|
|
.Select(x => AccessPastryStorage(x.GetViewModel, context))
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
|
|
|
|
|
{
|
2023-04-27 22:54:15 +04:00
|
|
|
|
if (!model.Id.HasValue && !model.DateFrom.HasValue && !model.DateTo.HasValue && !model.ClientId.HasValue && !model.OrderStatus.HasValue)
|
2023-03-06 10:20:01 +04:00
|
|
|
|
{
|
|
|
|
|
return new();
|
|
|
|
|
}
|
2023-04-27 22:54:15 +04:00
|
|
|
|
if (model.OrderStatus.HasValue)
|
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
|
|
|
|
return context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
|
|
|
|
.Where(x => x.Status == model.OrderStatus)
|
|
|
|
|
.Select(x => AccessPastryStorage(x.GetViewModel, context))
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
2023-04-03 10:49:52 +04:00
|
|
|
|
if (model.ClientId.HasValue)
|
2023-03-20 11:10:26 +04:00
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
2023-04-27 22:54:15 +04:00
|
|
|
|
return context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
2023-04-03 10:49:52 +04:00
|
|
|
|
.Where(x => x.ClientId == model.ClientId)
|
|
|
|
|
.Select(x => AccessPastryStorage(x.GetViewModel, context))
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
else if (!model.DateFrom.HasValue || !model.DateTo.HasValue)
|
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
2023-04-27 22:54:15 +04:00
|
|
|
|
return context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
2023-03-20 11:10:26 +04:00
|
|
|
|
.Where(x => x.Id == model.Id)
|
|
|
|
|
.Select(x => AccessPastryStorage(x.GetViewModel, context))
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
2023-04-27 22:54:15 +04:00
|
|
|
|
return context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
2023-03-20 11:10:26 +04:00
|
|
|
|
.Where(x => x.DateCreate >= model.DateFrom && x.DateCreate <= model.DateTo)
|
|
|
|
|
.Select(x => AccessPastryStorage(x.GetViewModel, context))
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
2023-03-06 10:20:01 +04:00
|
|
|
|
}
|
|
|
|
|
public OrderViewModel? GetElement(OrderSearchModel model)
|
|
|
|
|
{
|
2023-04-27 22:54:15 +04:00
|
|
|
|
if (!model.Id.HasValue && !model.ImplementerId.HasValue && !model.OrderStatus.HasValue)
|
2023-03-06 10:20:01 +04:00
|
|
|
|
{
|
|
|
|
|
return new();
|
|
|
|
|
}
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
2023-04-27 22:54:15 +04:00
|
|
|
|
if (!model.Id.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return AccessPastryStorage(context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
|
|
|
|
.FirstOrDefault(x => model.ImplementerId.HasValue && model.OrderStatus.HasValue
|
|
|
|
|
&& x.Status == model.OrderStatus && x.ImplementerId == model.ImplementerId)
|
|
|
|
|
?.GetViewModel, context);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return AccessPastryStorage(context.Orders.Include(x => x.Client).Include(x => x.Implementer)
|
|
|
|
|
.FirstOrDefault(x => x.Id == model.Id)
|
|
|
|
|
?.GetViewModel, context);
|
|
|
|
|
}
|
2023-03-06 10:20:01 +04:00
|
|
|
|
}
|
|
|
|
|
public OrderViewModel? Insert(OrderBindingModel model)
|
|
|
|
|
{
|
2023-04-03 10:49:52 +04:00
|
|
|
|
using var context = new ConfectioneryDatabase();
|
|
|
|
|
var newOrder = Order.Create(context, model);
|
2023-03-06 10:20:01 +04:00
|
|
|
|
if (newOrder == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
2023-04-03 10:49:52 +04:00
|
|
|
|
};
|
2023-03-06 10:20:01 +04:00
|
|
|
|
context.Orders.Add(newOrder);
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
return AccessPastryStorage(newOrder.GetViewModel, context);
|
|
|
|
|
}
|
|
|
|
|
public OrderViewModel? Update(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
|
|
|
|
var order = context.Orders.FirstOrDefault(x => x.Id == model.Id);
|
|
|
|
|
if (order == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2023-04-27 22:54:15 +04:00
|
|
|
|
order.Update(context, model);
|
2023-03-06 10:20:01 +04:00
|
|
|
|
context.SaveChanges();
|
|
|
|
|
return AccessPastryStorage(order.GetViewModel, context);
|
|
|
|
|
}
|
|
|
|
|
public OrderViewModel? Delete(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
using var context = new ConfectioneryDatabase();
|
|
|
|
|
var element = context.Orders.FirstOrDefault(rec => rec.Id == model.Id);
|
|
|
|
|
if (element != null)
|
|
|
|
|
{
|
|
|
|
|
context.Orders.Remove(element);
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
return AccessPastryStorage(element.GetViewModel, context);
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
static OrderViewModel AccessPastryStorage(OrderViewModel model, ConfectioneryDatabase context)
|
|
|
|
|
{
|
|
|
|
|
if (model == null) return model;
|
|
|
|
|
string? pastryName = context.Pastrys.FirstOrDefault(x => x.Id == model.PastryId)?.PastryName;
|
|
|
|
|
if (pastryName != null) model.PastryName = pastryName;
|
|
|
|
|
return model;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|