/// <summary>
 /// In this constructor the DI instance may come from injection done in Main, the RPI version.
 /// Or comming from a DI Container, the WPF version
 /// </summary>
 /// <param name="mydal"></param>
 public CalibrateLogic(IDataAccessLogic mydal)
 {
     this.currentDal = mydal;
 }
Esempio n. 2
0
 /// <summary>
 /// In this constructor the DI instance may come from injection done in Main, the RPI version.
 /// Or comming from a DI Container, the WPF version
 /// </summary>
 /// <param name="mydal"></param>
 public BatteryLogic(IDataAccessLogic mydal)
 {
     this.currentDal = mydal;
 }
Esempio n. 3
0
 /// <summary>
 /// In this constructor the DI instance may come from injection done in Main, the RPI version.
 /// Or comming from a DI Container, the WPF version
 /// </summary>
 /// <param name="mydal"></param>
 public ZeroAdjLogic(IDataAccessLogic mydal)
 {
     this.currentDal = mydal;
 }