CourseWork_Hotel/Hotel/HotelDataBaseImplement/Implemets/MealPlanStorage.cs

114 lines
3.5 KiB
C#
Raw Normal View History

using HotelContracts.BindingModels;
using HotelContracts.SearchModels;
using HotelContracts.StoragesContracts;
using HotelContracts.ViewModels;
using HotelDataBaseImplement.Models;
using Microsoft.EntityFrameworkCore;
namespace HotelDataBaseImplement.Implemets
{
public class MealPlanStorage : IMealPlanStorage
{
public MealPlanViewModel? Delete(MealPlanBindingModel model)
{
using var context = new HotelDataBase();
var element = context.MealPlans
.FirstOrDefault(rec => rec.Id == model.Id);
if (element != null)
{
context.MealPlans.Remove(element);
context.SaveChanges();
return element.GetViewModel;
}
return null;
}
public MealPlanViewModel? GetElement(MealPlanSearchModel model)
{
if (!model.Id.HasValue)
{
return null;
}
using var context = new HotelDataBase();
return context.MealPlans
.Include(x => x.Members)
.ThenInclude(x => x.Member)
.ThenInclude(x => x.ConferenceMember)
.ThenInclude(x => x.Conference)
.Include(x => x.Rooms)
.Include(x => x.Organiser)
.FirstOrDefault(x => (model.Id.HasValue && x.Id == model.Id))?
.GetViewModel;
}
public List<MealPlanViewModel> GetFilteredList(MealPlanSearchModel model)
{
if (string.IsNullOrEmpty(model.MealPlanName))
{
return new();
}
using var context = new HotelDataBase();
return context.MealPlans
.Include(x => x.Members)
.ThenInclude(x => x.Member)
.ThenInclude(x => x.ConferenceMember)
.ThenInclude(x => x.Conference)
.Include(x => x.Rooms)
.Include(x => x.Organiser)
.Where(x => x.MealPlanName.Contains(model.MealPlanName))
.Select(x => x.GetViewModel)
.ToList();
}
public List<MealPlanViewModel> GetFullList()
{
using var context = new HotelDataBase();
return context.MealPlans
.Include(x => x.Members)
.ThenInclude(x => x.Member)
.ThenInclude(x => x.ConferenceMember)
.ThenInclude(x => x.Conference)
.Include(x => x.Rooms)
.Include(x => x.Organiser)
.Select(x => x.GetViewModel)
.ToList();
}
public MealPlanViewModel? Insert(MealPlanBindingModel model)
{
using var context = new HotelDataBase();
var newMealPlan = MealPlan.Create(context,model);
if (newMealPlan == null)
{
return null;
}
context.MealPlans.Add(newMealPlan);
context.SaveChanges();
return newMealPlan.GetViewModel;
}
public MealPlanViewModel? Update(MealPlanBindingModel model)
{
using var context = new HotelDataBase();
var mealPlan = context.MealPlans.FirstOrDefault(x => x.Id == model.Id);
if (mealPlan == null)
{
return null;
}
mealPlan.Update(model);
context.SaveChanges();
return mealPlan.GetViewModel;
}
}
}