/// <summary> /// Obtiene el precio total de las consolas agregadas al carrito /// </summary> /// <returns>retorna el precio total</returns> public static int ObtenerPrecioTotalConsolas(this int preciototal, PS ps) { int total = 0; foreach (PS g in ps.ListaJuegosPSVenta) { int precio = g.Precio; total = total + precio; } return(total); }
/// <summary> /// Muestra el stock de las consolas de PS4 en la base de datos /// </summary> /// <param name="ps">ps</param> /// <returns>lista de consolas</returns> public List <PS> StockConsolaPS4(PS ps) { //GamesDAO gamesDAO = new GamesDAO(); //List<Games> listGames = gamesDAO.ListGames(); List <PS> listConsolaPS4 = new List <PS>(); foreach (PS p in ps.listConsolasStock) { if (p.Modelo == "PS4") { listConsolaPS4.Add(p); } } return(listConsolaPS4); }