110 lines
3.3 KiB
C#
Raw Normal View History

2024-05-08 11:24:46 +04:00
using FurnitureAssemblyContracts.BindingModels;
using FurnitureAssemblyContracts.SearchModels;
using FurnitureAssemblyContracts.StoragesContracts;
using FurnitureAssemblyContracts.ViewModels;
using FurnitureAssemblyDatabaseImplement.Models;
using Microsoft.EntityFrameworkCore;
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? GetElement(ClientSearchModel model)
{
2024-06-21 16:28:36 +04:00
using var context = new FurnitureAssemblyDatabase();
if (model.Id.HasValue)
{
return context.Clients
.Include(x => x.Orders)
.FirstOrDefault(x => x.Id == model.Id)
?.GetViewModel;
2024-05-08 11:24:46 +04:00
}
2024-05-13 23:32:57 +04:00
2024-06-21 16:28:36 +04:00
if (!string.IsNullOrEmpty(model.Email) && !string.IsNullOrEmpty(model.Password))
{
return context.Clients
.Include(x => x.Orders)
.FirstOrDefault(x => (x.Email == model.Email && x.Password == model.Password))
?.GetViewModel;
}
if (!string.IsNullOrEmpty(model.Email))
return context.Clients
.FirstOrDefault(x => x.Email == model.Email)
?.GetViewModel;
2024-05-13 23:32:57 +04:00
2024-06-21 16:28:36 +04:00
return null;
2024-05-08 11:24:46 +04:00
}
public List<ClientViewModel> GetFilteredList(ClientSearchModel model)
{
2024-06-21 14:50:51 +04:00
if (string.IsNullOrEmpty(model.Email))
{
return new();
2024-05-08 11:24:46 +04:00
}
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
using var context = new FurnitureAssemblyDatabase();
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
return context.Clients
2024-05-13 23:32:57 +04:00
.Where(x => x.Email.Contains(model.Email))
.Select(x => x.GetViewModel).ToList();
2024-05-08 11:24:46 +04:00
}
public List<ClientViewModel> GetFullList()
{
using var context = new FurnitureAssemblyDatabase();
2024-05-13 23:32:57 +04:00
return context.Clients.Select(x => x.GetViewModel).ToList();
2024-05-08 11:24:46 +04:00
}
public ClientViewModel? Insert(ClientBindingModel model)
{
var newClient = Client.Create(model);
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
if (newClient == null)
{
return null;
}
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
using var context = new FurnitureAssemblyDatabase();
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
context.Clients.Add(newClient);
context.SaveChanges();
2024-05-13 23:32:57 +04:00
2024-05-08 11:24:46 +04:00
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;
}
2024-05-13 23:32:57 +04:00
public ClientViewModel? Delete(ClientBindingModel model)
{
using var context = new FurnitureAssemblyDatabase();
2024-06-21 14:50:51 +04:00
2024-05-13 23:32:57 +04:00
var client = context.Clients.FirstOrDefault(x => x.Id == model.Id);
if (client == null)
{
return null;
}
context.Clients.Remove(client);
context.SaveChanges();
return client.GetViewModel;
}
2024-05-08 11:24:46 +04:00
}
}