Emelyanov A.S. LabWork_3_Hard #12
@ -79,7 +79,7 @@ namespace FishFactoryDatabaseImplement.Implements
|
||||
}
|
||||
shop.Update(model);
|
||||
context.SaveChanges();
|
||||
shop.UpdateSushi(context, model);
|
||||
shop.UpdateCanneds(context, model);
|
||||
transaction.Commit();
|
||||
return shop.GetViewModel;
|
||||
}
|
||||
@ -129,7 +129,7 @@ namespace FishFactoryDatabaseImplement.Implements
|
||||
{
|
||||
shop.ListCanneds[model.Id] = (shop.ListCanneds[model.Id].Item1, countInCurrentShop - count);
|
||||
count = 0;
|
||||
shop.UpdateSushi(context, new()
|
||||
shop.UpdateCanneds(context, new()
|
||||
{
|
||||
Id = shop.Id,
|
||||
ListCanneds = shop.ListCanneds,
|
||||
|
@ -77,7 +77,7 @@ namespace FishFactoryDatabaseImplement.Models
|
||||
ListCanneds = ListCanneds
|
||||
};
|
||||
|
||||
public void UpdateSushi(FishFactoryDatabase context, ShopBindingModel model)
|
||||
public void UpdateCanneds(FishFactoryDatabase context, ShopBindingModel model)
|
||||
{
|
||||
var shopCanned = context.ShopCanned.Where(rec => rec.ShopId == model.Id).ToList();
|
||||
if (shopCanned != null && shopCanned.Count > 0)
|
||||
|
Loading…
Reference in New Issue
Block a user