Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/16 22:31:28 (8 years ago)
Author:
abeham
Message:

#2588:

  • Returning id in add solution method
  • Added method to delete solutions
  • Added client methods in RunCreationClient that match the service methods
  • Made all service methods non-static in RunCreationClient
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBProblemView.cs

    r13666 r13684  
    183183    }
    184184    private void downloadCharacteristicsButton_Click(object sender, EventArgs e) {
    185       var values = RunCreationClient.GetCharacteristicValues(Content.ProblemId).ToList();
     185      var values = RunCreationClient.Instance.GetCharacteristicValues(Content.ProblemId).ToList();
    186186      var content = new StringMatrix(values.Count, 3);
    187187      for (var i = 0; i < values.Count; i++) {
     
    204204      }
    205205      try {
    206         RunCreationClient.SetCharacteristicValues(Content.ProblemId, values);
     206        RunCreationClient.Instance.SetCharacteristicValues(Content.ProblemId, values);
    207207      } catch (Exception ex) { ErrorHandling.ShowErrorDialog(ex); }
    208208    }
Note: See TracChangeset for help on using the changeset viewer.