Exemplo n.º 1
0
        public void ChangeMaxCurrentAmp(float maxCurrentAmp)
        {
            float differenceInCurrent = maxCurrentAmp - this.MaxCurrentAmp;

            this.MaxCurrentAmp = maxCurrentAmp;

            ChargeStation.UpdateTotalMaxCurrentAmp(differenceInCurrent);
        }
Exemplo n.º 2
0
 public void AppendChargeStation(ChargeStation chargeStation)
 {
     this.ChargeStations.Add(chargeStation);
 }