2024-04-28 19:31:02 +04:00
|
|
|
|
using BankContracts.BindingModels;
|
|
|
|
|
using BankContracts.SearchModels;
|
|
|
|
|
using BankContracts.StoragesContracts;
|
|
|
|
|
using BankContracts.ViewModels;
|
|
|
|
|
using BankDatabaseImplement.Models;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2024-04-28 18:50:40 +04:00
|
|
|
|
|
|
|
|
|
namespace BankDatabaseImplement.Implements
|
|
|
|
|
{
|
2024-04-28 19:31:02 +04:00
|
|
|
|
public class OperationStorage : IOperationStorage
|
2024-04-28 18:50:40 +04:00
|
|
|
|
{
|
2024-04-28 19:31:02 +04:00
|
|
|
|
private void CheckSearchModel(OperationSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
throw new ArgumentNullException("Передаваемая модель для поиска равна нулю", nameof(model));
|
|
|
|
|
if (!model.Id.HasValue && !model.EmployeeId.HasValue && model.PurchasesIds == null)
|
|
|
|
|
throw new ArgumentException("Все передаваемые поля поисковой модели оказались пусты или равны null");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OperationViewModel? Delete(OperationBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
using var context = new BankDB();
|
|
|
|
|
var element = context.Operations.FirstOrDefault(x => x.Id == model.Id);
|
|
|
|
|
if (element != null)
|
|
|
|
|
{
|
|
|
|
|
context.Operations.Remove(element);
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
return element.GetViewModel;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OperationViewModel? GetElement(OperationSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckSearchModel(model);
|
|
|
|
|
if (!model.Id.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
using var context = new BankDB();
|
|
|
|
|
return context.Operations
|
|
|
|
|
.Include(x => x.Employee)
|
|
|
|
|
.FirstOrDefault(x => model.Id.HasValue && x.Id == model.Id)?.GetViewModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<OperationViewModel> GetFilteredList(OperationSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckSearchModel(model);
|
|
|
|
|
if (model.Id.HasValue)
|
|
|
|
|
{
|
|
|
|
|
var res = GetElement(model);
|
|
|
|
|
return res != null ? new() { res } : new();
|
|
|
|
|
}
|
|
|
|
|
using var context = new BankDB();
|
|
|
|
|
|
|
|
|
|
var query = context.Operations.Include(x => x.Employee);
|
|
|
|
|
if (model.EmployeeId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return query
|
|
|
|
|
.Where(x => model.EmployeeId == x.EmployeeId)
|
|
|
|
|
.Select(x => x.GetViewModel)
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (model.PurchasesIds != null)
|
|
|
|
|
return query
|
|
|
|
|
.Include(x => x.Purchases)!
|
|
|
|
|
.ThenInclude(x => x.Purchase)
|
|
|
|
|
.ThenInclude(x => x.Operations)
|
|
|
|
|
.Where(x => x.Purchases.Any(y => model.PurchasesIds.Contains(y.PurchaseId)))
|
|
|
|
|
.Select(x => x.GetViewModel)
|
|
|
|
|
.ToList();
|
|
|
|
|
return new();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<OperationViewModel> GetFullList()
|
|
|
|
|
{
|
|
|
|
|
using var context = new BankDB();
|
|
|
|
|
return context.Operations.Include(x => x.Employee)
|
|
|
|
|
.Select(x => x.GetViewModel)
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OperationViewModel? Insert(OperationBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
var newOperation = Operation.Create(model);
|
|
|
|
|
if (newOperation == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
using var context = new BankDB();
|
|
|
|
|
context.Operations.Add(newOperation);
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
return newOperation.GetViewModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OperationViewModel? Update(OperationBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
using var context = new BankDB();
|
2024-04-28 21:30:55 +04:00
|
|
|
|
var operation = context.Operations.FirstOrDefault(x => x.Id == model.Id);
|
|
|
|
|
if (operation == null)
|
2024-04-28 19:31:02 +04:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2024-04-28 21:30:55 +04:00
|
|
|
|
operation.Update(model);
|
2024-04-28 19:31:02 +04:00
|
|
|
|
context.SaveChanges();
|
2024-04-28 21:30:55 +04:00
|
|
|
|
return operation.GetViewModel;
|
2024-04-28 19:31:02 +04:00
|
|
|
|
}
|
2024-04-28 18:50:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|