/// <summary>
        /// Add new set.
        /// </summary>
        /// <param name="response">The response.</param>
        public static void AddNewSet(string response)
        {
            var newSetModel = new MovieSetModel {
                SetName = response
            };

            CurrentDatabase.Add(newSetModel);
            SetCurrentSet(newSetModel);
        }