public Measurement(int weerstand, int hartslag, int rondes, SimpleTime time) { Weerstand = weerstand; Hartslag = hartslag; Rondes = rondes; Time = time; }
public Measurement(int weerstand, int hartslag, int rondes, int time1, int time2) { Weerstand = weerstand; Hartslag = hartslag; Rondes = rondes; Time = new SimpleTime(time1, time2); }
public bool Equals(SimpleTime other) { return((Minutes == other.Minutes) && (Seconds == other.Seconds)); }