public List <string> GetCompletedScheduleIds()
        {
            string completed = appPreferences.Get(Constants.CompletedSchedulesKey, string.Empty);

            string[] ids = completed.Trim()
                           .Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);

            return(new List <string>(ids));
        }