103 lines
3.0 KiB
C#
103 lines
3.0 KiB
C#
|
using FurnitureAssemblyContracts.BindingModels;
|
|||
|
using FurnitureAssemblyContracts.SearchModels;
|
|||
|
using FurnitureAssemblyContracts.StoragesContracts;
|
|||
|
using FurnitureAssemblyContracts.ViewModels;
|
|||
|
using FurnitureAssemblyDatabaseImplement.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FurnitureAssemblyDatabaseImplement.Implements
|
|||
|
{
|
|||
|
public class WorkPieceStorage : IWorkPieceStorage
|
|||
|
{
|
|||
|
public List<WorkPieceViewModel> GetFullList()
|
|||
|
{
|
|||
|
using var context = new FurnitureAssemblyDatabase();
|
|||
|
|
|||
|
return context.WorkPieces
|
|||
|
.Select(x => x.GetViewModel)
|
|||
|
.ToList();
|
|||
|
}
|
|||
|
|
|||
|
public List<WorkPieceViewModel> GetFilteredList(WorkPieceSearchModel model)
|
|||
|
{
|
|||
|
if (string.IsNullOrEmpty(model.WorkPieceName))
|
|||
|
{
|
|||
|
return new();
|
|||
|
}
|
|||
|
|
|||
|
using var context = new FurnitureAssemblyDatabase();
|
|||
|
|
|||
|
return context.WorkPieces
|
|||
|
.Where(x => x.WorkPieceName.Contains(model.WorkPieceName))
|
|||
|
.Select(x => x.GetViewModel)
|
|||
|
.ToList();
|
|||
|
}
|
|||
|
|
|||
|
public WorkPieceViewModel? GetElement(WorkPieceSearchModel model)
|
|||
|
{
|
|||
|
if(string.IsNullOrEmpty(model.WorkPieceName) && !model.Id.HasValue)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
using var context = new FurnitureAssemblyDatabase();
|
|||
|
|
|||
|
return context.WorkPieces
|
|||
|
.FirstOrDefault(x => (!string.IsNullOrEmpty(model.WorkPieceName) && x.WorkPieceName == model.WorkPieceName) ||
|
|||
|
(model.Id.HasValue && x.Id == model.Id))?.GetViewModel;
|
|||
|
}
|
|||
|
|
|||
|
public WorkPieceViewModel? Insert(WorkPieceBindingModel model)
|
|||
|
{
|
|||
|
var newWorkPiece = WorkPiece.Create(model);
|
|||
|
|
|||
|
if(newWorkPiece == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
using var context = new FurnitureAssemblyDatabase();
|
|||
|
context.WorkPieces.Add(newWorkPiece);
|
|||
|
context.SaveChanges();
|
|||
|
|
|||
|
return newWorkPiece.GetViewModel;
|
|||
|
}
|
|||
|
|
|||
|
public WorkPieceViewModel? Update(WorkPieceBindingModel model)
|
|||
|
{
|
|||
|
using var context = new FurnitureAssemblyDatabase();
|
|||
|
var workPiece = context.WorkPieces.FirstOrDefault(x => x.Id == model.Id);
|
|||
|
|
|||
|
if (workPiece == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
workPiece.Update(model);
|
|||
|
context.SaveChanges();
|
|||
|
|
|||
|
return workPiece.GetViewModel;
|
|||
|
}
|
|||
|
|
|||
|
public WorkPieceViewModel? Delete(WorkPieceBindingModel model)
|
|||
|
{
|
|||
|
using var context = new FurnitureAssemblyDatabase();
|
|||
|
var element = context.WorkPieces.FirstOrDefault(rec => rec.Id == model.Id);
|
|||
|
|
|||
|
if(element != null)
|
|||
|
{
|
|||
|
context.WorkPieces.Remove(element);
|
|||
|
context.SaveChanges();
|
|||
|
|
|||
|
return element.GetViewModel;
|
|||
|
}
|
|||
|
|
|||
|
return null;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|