示例#1
0
        static void Main(string[] args)
        {
            // Creo un estante
            Estante estante = new Estante(3, 1);
            // Creo 4 productos
            Producto p1 = new Producto("Pepsi", "PESDS97413", (float)18.5);
            Producto p2 = new Producto("Coca-Cola", "COSDS55752", (float)11.5);
            Producto p3 = new Producto("Manaos", "MASDS51292", (float)20.5);
            Producto p4 = new Producto("Crush", "CRSDS54861", (float)10.75);

            // Agrego los productos al estante
            if (estante + p1)
            {
                Console.WriteLine("Agregó {0} {1} {2}", p1.GetMarca(), (string)p1, p1.GetPrecio());
            }
            else
            {
                Console.WriteLine("¡NO agregó {0} {1} {2}!", p1.GetMarca(), (string)p1, p1.GetPrecio());
            }
            if (estante + p1)
            {
                Console.WriteLine("Agregó {0} {1} {2}", p1.GetMarca(), (string)p1, p1.GetPrecio());
            }
            else
            {
                Console.WriteLine("¡NO agregó {0} {1} {2}!", p1.GetMarca(), (string)p1, p1.GetPrecio());
            }
            if (estante + p2)
            {
                Console.WriteLine("Agregó {0} {1} {2}", p2.GetMarca(), (string)p2, p2.GetPrecio());
            }
            else
            {
                Console.WriteLine("¡NO agregó {0} {1} {2}!", p2.GetMarca(), (string)p2, p2.GetPrecio());
            }
            if (estante + p3)
            {
                Console.WriteLine("Agregó {0} {1} {2}", p3.GetMarca(), (string)p3, p3.GetPrecio());
            }
            else
            {
                Console.WriteLine("¡NO agregó {0} {1} {2}!", p3.GetMarca(), (string)p3, p3.GetPrecio());
            }
            if (estante + p4)
            {
                Console.WriteLine("Agregó {0} {1} {2}", p4.GetMarca(), (string)p4, p4.GetPrecio());
            }
            else
            {
                Console.WriteLine("¡NO agregó {0} {1} {2}!", p4.GetMarca(), (string)p4, p4.GetPrecio());
            }
            // Muestro todo el estante
            Console.WriteLine();
            Console.WriteLine("<------------------------------------------------->");
            Console.WriteLine(Estante.MostrarEstante(estante));
            Console.ReadKey();
        }
示例#2
0
        public static string MostrarEstante(Estante e)
        {
            StringBuilder retorno = new StringBuilder();

            retorno.AppendFormat("Ubicacion estante: {0}\n", e.ubicacionEstante);
            retorno.AppendLine("--------------------------");
            foreach (var p in e.producto)
            {
                retorno.AppendLine(Producto.MostrarProducto(p));
            }

            return(retorno.ToString());
        }
示例#3
0
        public static string MostrarEstante(Estante e)
        {
            StringBuilder sb = new StringBuilder();

            sb.AppendLine("Ubicacion: " + e.ubicacionEstante);
            foreach (Producto p in e.productos)
            {
                if (!(((Object)p) == null))
                {
                    sb.AppendLine(Producto.MostrarProducto(p));
                }
            }
            return(sb.ToString());
        }
        public static string MostrarEstante(Estante e)
        {
            StringBuilder retorno = new StringBuilder();

            retorno.AppendLine("Ubicacion: " + e.ubicacionEstante);
            foreach (Producto producto in e.producto)
            {
                if (!(((Object)producto) == null))
                {
                    retorno.AppendLine(Producto.MostrarProducto(producto));
                }
            }
            return(retorno.ToString());
        }