created Common Interface for all the calculation classes.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.example.refactoredapp.domain
|
||||
|
||||
import com.example.refactoredapp.data.model.TestRightCalculationData
|
||||
import com.example.refactoredapp.data.model.TestRightResultType
|
||||
|
||||
interface TestRightResultCalculation {
|
||||
fun getResults(
|
||||
wavelengthToAbsorbance: ArrayList<ArrayList<Double>>
|
||||
): TestRightCalculationData
|
||||
}
|
||||
Reference in New Issue
Block a user