public GramsGiven(double gramsGiven, double gfwt, double coefficentFrom, ReactionCompound forCompound) : base(coefficentFrom, forCompound) { this.gramsGiven = gramsGiven; this.gfwt = gfwt; numberGivenParams = 1; }
public MolarityGiven(double molarity, double liters, double coefficentFrom, ReactionCompound compoundFrom) : base(coefficentFrom, compoundFrom) { this.molarity = molarity; this.liters = liters; numberGivenParams = 2; }
internal ReactionGiven(double coefficentGiven, ReactionCompound givenForCompound) { this.givenForCompound = givenForCompound; this.coefficentGiven = coefficentGiven; }