public CorpAlliancePresenter(ApplicationPresenter presenter, CorpAllianceView view, PilotGroup Group)
     : base(view, "Group.Name")
 {
     View.DataContext = this;
     _presenter       = presenter;
     _group           = Group;
 }
 private void AddCorpAllianceTab(PilotGroup Group)
 {
     View.AddTab(new CorpAlliancePresenter(this, new CorpAllianceView(), Group));
 }