public TestController(IResponsiveClient helper, ITestWindow control)
     : base(helper)
 {
     _control = control;
 }
 public MainController(IResponsiveClient helper, IMain control)
     : base(helper)
 {
     _control = control;
 }
 public TestController(IResponsiveClient helper, ITestWindow view)
     : base(helper)
 {
     _view = view;
 }