123456789101112131415161718 |
- using IViewModel.ViewModels;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IOilSourceControl
- {
- public interface IOilSourceControl
- {
- public Func<ICommunication.ICommunication> LocalCommunication { get; set; }
- public Func<ICommunication.ICommunication> RemoteCommunication { get; set; }
- public ViewModelBase ViewModel { get; }
- public Type MainViewType { get; }
- public Type MinViewType { get; }
- }
- }
|