File size: 1,058 Bytes
b1b3bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using DWSIM.Interfaces;
using DWSIM.SharedClassesCSharp.FilePicker.Windows;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DWSIM.SharedClassesCSharp.FilePicker
{
    public class FilePickerService : IFilePickerService
    {
        private static FilePickerService _instance;
        public static IFilePickerService GetInstance()
        {
            if (_instance == null)
                _instance = new FilePickerService();

            return _instance;
        }


        private Func<IFilePicker> _filePickerFactory = () => new WindowsFilePicker();
        public void SetFilePickerFactory(Func<IFilePicker> filePickerFactory)
        {
            _filePickerFactory = filePickerFactory;
        }

        private FilePickerService()
        {

        }

        public IFilePicker GetFilePicker()
        {
            //return new WindowsFilePicker();
            //return new Simulate365FilePicker();
            return _filePickerFactory();
        }
    }
}