Example #1
0
        public static string HistorialDePedidos()
        {
            StringBuilder sb = new StringBuilder();

            if (historialDePedidos != null)
            {
                foreach (Pedido item in historialDePedidos)
                {
                    sb.AppendLine(Pedido.MostrarPedido(item));
                }
            }
            return(sb.ToString());
        }