101 lines
3.3 KiB
C#
101 lines
3.3 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 ClientStorage : IClientStorage
|
|
{
|
|
public ClientViewModel? Delete(ClientBindingModel model)
|
|
{
|
|
using var context = new FurnitureAssemblyDatabase();
|
|
var element = context.Clients.FirstOrDefault(rec => rec.Id == model.Id);
|
|
if (element != null)
|
|
{
|
|
context.Clients.Remove(element);
|
|
context.SaveChanges();
|
|
return element.GetViewModel;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public ClientViewModel? GetElement(ClientSearchModel model)
|
|
{
|
|
if (string.IsNullOrEmpty(model.Email) && !model.Id.HasValue && string.IsNullOrEmpty(model.Password))
|
|
{
|
|
return null;
|
|
}
|
|
using var context = new FurnitureAssemblyDatabase();
|
|
if (model.Id.HasValue)
|
|
{
|
|
return context.Clients.FirstOrDefault(x => x.Id == model.Id)?.GetViewModel;
|
|
}
|
|
if (model.Email != null && model.Password != null)
|
|
{
|
|
return context.Clients
|
|
.FirstOrDefault(x => x.Email.Equals(model.Email) && x.Password.Equals(model.Password))
|
|
?.GetViewModel;
|
|
}
|
|
if (model.Email != null)
|
|
{
|
|
return context.Clients.FirstOrDefault(x => x.Email.Equals(model.Email))?.GetViewModel;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public List<ClientViewModel> GetFilteredList(ClientSearchModel model)
|
|
{
|
|
if (string.IsNullOrEmpty(model.Email))
|
|
{
|
|
return new();
|
|
}
|
|
using var context = new FurnitureAssemblyDatabase();
|
|
return context.Clients
|
|
.Where(x => x.Email.Equals(model.Email))
|
|
.Select(x => x.GetViewModel)
|
|
.ToList();
|
|
}
|
|
|
|
public List<ClientViewModel> GetFullList()
|
|
{
|
|
using var context = new FurnitureAssemblyDatabase();
|
|
return context.Clients
|
|
.Select(x => x.GetViewModel)
|
|
.ToList();
|
|
}
|
|
|
|
public ClientViewModel? Insert(ClientBindingModel model)
|
|
{
|
|
var newClient = Client.Create(model);
|
|
if (newClient == null)
|
|
{
|
|
return null;
|
|
}
|
|
using var context = new FurnitureAssemblyDatabase();
|
|
context.Clients.Add(newClient);
|
|
context.SaveChanges();
|
|
return newClient.GetViewModel;
|
|
}
|
|
|
|
public ClientViewModel? Update(ClientBindingModel model)
|
|
{
|
|
using var context = new FurnitureAssemblyDatabase();
|
|
var client = context.Clients.FirstOrDefault(x => x.Id == model.Id);
|
|
if (client == null)
|
|
{
|
|
return null;
|
|
}
|
|
client.Update(model);
|
|
context.SaveChanges();
|
|
return client.GetViewModel;
|
|
}
|
|
}
|
|
}
|