private void ImagesSave(string selectedPath)
        {
            if (currentExample == null)
            {
                return;
            }

            try
            {
                currentExample.Save(selectedPath);
                view.AllImagesSaveInfo(currentExample.Images.Count, selectedPath);
            }
            catch (Exception ex)
            {
                view.ShowException(ex);
            }
        }