public async Task RefreshMenusAsync()
        {
            try
            {
                /* Pull down the new data                                 */
                await Database.SyncAsync(pullData : true);

                /* Get all the items for the dining Grab and Go            */
                GrabAndGoItems = await Database.GetGrabAndGoItemsAsync();

                /* Format the dining menus for the separate views          */
                GetDiningMenus();
            }
            catch (Exception ex)
            {
                Debug.WriteLine("An error occurred in retrieving the menus:");
                Debug.WriteLine($"{ex.Message} in {ex.Source}");
            }
        }