summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Views/Menu/File/ISaveAsView.cs
blob: e66de0405dfc46ecd45389e50751a8f1719e28ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Windows.Forms;
using Notepad.Presentation.Presenters.Menu.File;

namespace Notepad.Presentation.Views.Menu.File {
    public interface ISaveAsView {
        void AttachTo(ISaveAsPresenter presenterToDelegateWorkToo);
    }

    public class SaveAsView : ISaveAsView {
        public void AttachTo(ISaveAsPresenter presenterToDelegateWorkToo) {
            var saveFileDialog = new SaveFileDialog();
            if (saveFileDialog.ShowDialog() == DialogResult.OK) {
                presenterToDelegateWorkToo.SaveToFileAt(saveFileDialog.FileName);
            }
        }
    }
}