created Common Interface for all the calculation classes.

This commit is contained in:
vsuryakumar
2023-01-30 13:50:53 +05:30
parent 3cc676bb32
commit f4c620c7f8

View File

@@ -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
}