public int GetPrice(HalfDay halfDay) { return(prices[(int)halfDay]); }
public Movement GetMovement(HalfDay halfDay) { return(movements[(int)halfDay]); }
public void SetPrice(HalfDay halfDay, int price) { prices[(int)halfDay] = price; recalculateMovements(); }