Exemplo n.º 1
0
 /// <summary>
 ///     Initializes an instance of the <see cref="Equation" /> class.
 /// </summary>
 /// <param name="reactants">The reactants.</param>
 /// <param name="products">The products.</param>
 protected Equation(StackCollection reactants, StackCollection products)
 {
     Reactants = reactants;
     Products  = products;
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Initializes an instance of the <see cref="Equation" /> class.
 /// </summary>
 /// <param name="reactants">The reactants.</param>
 /// <param name="products">The products.</param>
 public RedoxEquation(StackCollection reactants, StackCollection products) : base(reactants, products)
 {
 }