Exemplo n.º 1
0
 public ServersList(GroupModel group)
 {
     serverStatus = new ServerStatusRepository(service);
     Group        = group;
     DataContext  = (Clients)DataContext;
     this.Loaded += (s, e) => init(group);
 }
Exemplo n.º 2
0
 public ServerView(GroupModel group, string key, bool opened)
 {
     serverStatus = new ServerStatusRepository(service);
     Group        = group;
     Key          = key;
     this.Loaded += (s, e) => init(key);
 }
Exemplo n.º 3
0
 public AppPoolsConfiguration(GroupModel group, string key)
 {
     Group        = group;
     Key          = key;
     serverStatus = new ServerStatusRepository(service);
     InitializeComponent();
     SetConfig(key);
 }
Exemplo n.º 4
0
 public Clients()
 {
     serverStatus = new ServerStatusRepository(service);
     this.Loaded += (s, e) => init();
 }