IOilSourceControl.cs 532 B

123456789101112131415161718
  1. using IViewModel.ViewModels;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace IOilSourceControl
  8. {
  9. public interface IOilSourceControl
  10. {
  11. public Func<ICommunication.ICommunication> LocalCommunication { get; set; }
  12. public Func<ICommunication.ICommunication> RemoteCommunication { get; set; }
  13. public ViewModelBase ViewModel { get; }
  14. public Type MainViewType { get; }
  15. public Type MinViewType { get; }
  16. }
  17. }