public void SetInputsForBMI(Operations operation, double weight, double height) { operation.Operand1 = weight; operation.Operand2 = height; }
public void SetInputsForMartix(Operations operation, int[,] M1, int[,] M2) { operation.Matrix1 = M1; operation.Matrix2 = M2; }
public void SetOperands(Operations operation, double FirstArgument, double SecondArgument) { operation.Operand1 = FirstArgument; operation.Operand2 = SecondArgument; }