public ProxyMath()
 {
     _realMath = new RealMath();
 }
 /// <summary>Constructor</summary>
 public LogSerilogFunction(IDoSomeMath doSomeMath)
 {
     _doSomeMath = doSomeMath;
 }
 public AppInsightsFunction(TelemetryClient telemetryClient, IDoSomeMath doSomeMath)
 {
     _telemetryClient = telemetryClient;
     _doSomeMath      = doSomeMath;
 }