public async Task <int> CalculationWithDependencies(int a, int b)
 {
     return(b + await _dependency.AsyncExternalCall(a));
 }