private void RefreshBoatInventory(bool active = true)
 {
     if (active)
     {
         _boatInventory = _boatManager.RetrieveActiveBoats();
     }
     else
     {
         _boatInventory = _boatManager.RetrieveInactiveBoats();
     }
 }