public bool CanMoveArmy(int armyId, Pos toPos) { var army = GetArmy(armyId); return(army != null && !army.Moved && manager.CanMoveTo(army, toPos)); }