Пример #1
0
 public void SetInputsForBMI(Operations operation, double weight, double height)
 {
     operation.Operand1 = weight;
     operation.Operand2 = height;
 }
Пример #2
0
 public void SetInputsForMartix(Operations operation, int[,] M1, int[,] M2)
 {
     operation.Matrix1 = M1;
     operation.Matrix2 = M2;
 }
Пример #3
0
 public void SetOperands(Operations operation, double FirstArgument, double SecondArgument)
 {
     operation.Operand1 = FirstArgument;
     operation.Operand2 = SecondArgument;
 }