92 lines
3.2 KiB
C#
92 lines
3.2 KiB
C#
|
using PlumbingRepairContracts.BindingModels;
|
|||
|
using PlumbingRepairContracts.SearchModels;
|
|||
|
using PlumbingRepairContracts.StoragesContracts;
|
|||
|
using PlumbingRepairContracts.ViewModels;
|
|||
|
using PlumbingRepairDatabaseImplement.Models;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace PlumbingRepairDatabaseImplement.Implements
|
|||
|
{
|
|||
|
public class ClientStorage : IClientStorage
|
|||
|
{
|
|||
|
public List<ClientViewModel> GetFullList()
|
|||
|
{
|
|||
|
using var context = new PlumbingRepairDataBase();
|
|||
|
return context.Clients
|
|||
|
.Include(x => x.Orders)
|
|||
|
.Select(x => x.GetViewModel)
|
|||
|
.ToList();
|
|||
|
}
|
|||
|
public List<ClientViewModel> GetFilteredList(ClientSearchModel model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
return new();
|
|||
|
}
|
|||
|
if (!string.IsNullOrEmpty(model.Email))
|
|||
|
{
|
|||
|
using var context = new PlumbingRepairDataBase();
|
|||
|
return context.Clients
|
|||
|
.Include(x => x.Orders)
|
|||
|
.Where(x => x.Email.Contains(model.Email))
|
|||
|
.Select(x => x.GetViewModel)
|
|||
|
.ToList();
|
|||
|
}
|
|||
|
return new();
|
|||
|
}
|
|||
|
public ClientViewModel? GetElement(ClientSearchModel model)
|
|||
|
{
|
|||
|
using var context = new PlumbingRepairDataBase();
|
|||
|
if (model.Id.HasValue)
|
|||
|
{
|
|||
|
return context.Clients
|
|||
|
.FirstOrDefault(x => (x.Id == model.Id))?.GetViewModel;
|
|||
|
}
|
|||
|
else if (!string.IsNullOrEmpty(model.Email) && !string.IsNullOrEmpty(model.Password))
|
|||
|
{
|
|||
|
return context.Clients
|
|||
|
.FirstOrDefault(x => (x.Email == model.Email && x.Password == model.Password))?.GetViewModel;
|
|||
|
}
|
|||
|
return new();
|
|||
|
}
|
|||
|
public ClientViewModel? Insert(ClientBindingModel model)
|
|||
|
{
|
|||
|
var newClient = Client.Create(model);
|
|||
|
if (newClient == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
using var context = new PlumbingRepairDataBase();
|
|||
|
context.Clients.Add(newClient);
|
|||
|
context.SaveChanges();
|
|||
|
return newClient.GetViewModel;
|
|||
|
}
|
|||
|
public ClientViewModel? Update(ClientBindingModel model)
|
|||
|
{
|
|||
|
using var context = new PlumbingRepairDataBase();
|
|||
|
var client = context.Clients.FirstOrDefault(x => x.Id == model.Id);
|
|||
|
if (client == null)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
client.Update(model);
|
|||
|
context.SaveChanges();
|
|||
|
return client.GetViewModel;
|
|||
|
}
|
|||
|
public ClientViewModel? Delete(ClientBindingModel model)
|
|||
|
{
|
|||
|
using var context = new PlumbingRepairDataBase();
|
|||
|
var element = context.Clients
|
|||
|
.Include(x => x.Orders)
|
|||
|
.FirstOrDefault(rec => rec.Id == model.Id);
|
|||
|
if (element != null)
|
|||
|
{
|
|||
|
context.Clients.Remove(element);
|
|||
|
context.SaveChanges();
|
|||
|
return element.GetViewModel;
|
|||
|
}
|
|||
|
return null;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|