Revert "изменил file и list implement"

This reverts commit 979d739d7c.
This commit is contained in:
bekodeg 2024-05-19 16:54:15 +04:00
parent 979d739d7c
commit 5e719844c3
2 changed files with 11 additions and 15 deletions

View File

@ -15,9 +15,7 @@ namespace SushiBarFileImplement.Implements
}
public List<OrderViewModel> GetFullList()
{
return source.Orders
.Select(x => AttachSushiName(x.GetViewModel))
.ToList();
return source.Orders.Select(x => AttachSushiName(x.GetViewModel)).ToList();
}
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
{
@ -25,13 +23,9 @@ namespace SushiBarFileImplement.Implements
{
return new();
}
return source.Orders
.Where(o =>
(model.Id.HasValue && o.Id == model.Id) ||
(model.DateFrom.HasValue && model.DateTo.HasValue &&
model.DateFrom < o.DateCreate && o.DateCreate < model.DateTo))
.Select(x => AttachSushiName(x.GetViewModel))
.ToList();
return source.Orders.Where(x =>
x.Id == model.Id).Select(x =>
AttachSushiName(x.GetViewModel)).ToList();
}
public OrderViewModel? GetElement(OrderSearchModel model)
{
@ -39,8 +33,8 @@ namespace SushiBarFileImplement.Implements
{
return null;
}
return AttachSushiName(source.Orders
.FirstOrDefault(x => (x.Id == model.Id))?.GetViewModel);
return AttachSushiName(source.Orders.FirstOrDefault(x =>
(x.Id == model.Id))?.GetViewModel);
}
public OrderViewModel? Insert(OrderBindingModel model)
{

View File

@ -25,11 +25,13 @@ namespace SushiBarListImplement.Implements
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
{
var result = new List<OrderViewModel>();
if (model == null || !model.Id.HasValue)
{
return result;
}
foreach (var order in _source.Orders)
{
if (order.Id == model.Id ||
(model.DateFrom.HasValue && model.DateTo.HasValue &&
model.DateFrom < order.DateCreate && order.DateCreate < model.DateTo)))
if (order.Id == model.Id)
{
result.Add(AttachSushiName(order.GetViewModel));
}