public IActionResult CompleteSale(decimal Total) { _saleService.CompleteShopping(Total); if (_saleService.SaveChanges() != 0) { return(RedirectToAction("Index", "Home", new { scsMsg = "Alışverişiniz tamamlandı." })); } else { return(RedirectToAction("Index", new { Msg = "Alışveriş tamamlanamadı." })); } }