Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/StatusModel.cs @ 9215

Last change on this file since 9215 was 9215, checked in by fschoepp, 11 years ago

#1888:

  • Janitor is now working as expected in Windows Azure
  • Added basic support for experiments (draggable experiments)
  • Added methods to save/read experiments from TableStorage
  • The job status can now be retrieved by using the GetTasks/GetTaskData methods
  • Added a class to convert JSON-objects to Algorithm instances
  • Web page: Added experiment button to navigation
File size: 633 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using HeuristicLab.Services.Optimization.ControllerService.Model;
6
7namespace HeuristicLab.Services.Optimization.Web.Models {
8  /*public class Job {
9    public string Id { get; set; }
10    private IList<Task> tasks = new List<Task>();
11
12    public IList<Task> Tasks {
13      get { return tasks; }
14      set { tasks = value; }
15    }
16  }*/
17
18  public class StatusModel {
19    // Jobs
20    private IList<Job> jobs = new List<Job>();
21
22    public IList<Job> Jobs {
23      get { return jobs; }
24      set { jobs = value; }
25    }
26  }
27}
Note: See TracBrowser for help on using the repository browser.