Last change
on this file since 9654 was
9215,
checked in by fschoepp, 12 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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Web;
|
---|
5 | using HeuristicLab.Services.Optimization.ControllerService.Model;
|
---|
6 |
|
---|
7 | namespace 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.