something = function (inputA, inputB, inputC) {
this.paramA = inputA + inputB;
this.paramB = inputB + inputC;
this.paramC = inputC - inputA;
this.getSomething = function () {
return this.paramA + this.paramB * this.paramC;
}
}