Exemplo n.º 1
0
 public RespiratoryController([Named("FileDependency")]ICacheProvider cache, IReadEquationData<Equation> readEquationData,IMathExpressionParser mathExpressionParser,IMyLogger logger)
 {
     this.myLogger = logger;
     this.Cache = cache;
     this.ReadEquationData = readEquationData;
     this.MathExpressionParser = mathExpressionParser;
 }
Exemplo n.º 2
0
 public EquationsRepository(ICacheProvider _cache, IReadEquationData<Equation> _readEquationData)
 {
     this.Cache = _cache;
     this.ReadEquationData = _readEquationData;
 }