public int TotalAmount() { var amount = 0; foreach (var item in carts) { amount += Calc.CalulatePrice(item); } return(amount); }