/// <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; }
/// <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; }
/// <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; }