public void PopulateBoats()
        {
            DAL = new DAL.BoatListDAL(UniqueID);

            if (DAL.FileExists())
            {
                Boats = DAL.LoadList();
            }
        }
        public void SaveBoats()
        {
            if (DAL == null)
            {
                DAL = new DAL.BoatListDAL(UniqueID);
            }

            DAL.SaveList(Boats);
        }