Last change
on this file since 9070 was
8958,
checked in by fschoepp, 12 years ago
|
#1888:
- Added a administrator web interface for job management
- Fixed Hive Client (PluginValidator) to find the assemblies within the right directories
- Reorganized controller classes (Folders HL, Interfaces, Azure)
- You may now successfully schedule and run jobs with the web ui.
|
File size:
654 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel.DataAnnotations;
|
---|
4 | using System.Globalization;
|
---|
5 | using System.Web.Mvc;
|
---|
6 | using System.Web.Security;
|
---|
7 | using System.Web;
|
---|
8 |
|
---|
9 | namespace HeuristicLab.Services.Optimization.Web.Models {
|
---|
10 | public class UploadScenario {
|
---|
11 | private HttpPostedFileBase scenarioMapper;
|
---|
12 |
|
---|
13 | public HttpPostedFileBase ScenarioMapper {
|
---|
14 | get { return scenarioMapper; }
|
---|
15 | set { scenarioMapper = value; }
|
---|
16 | }
|
---|
17 |
|
---|
18 | private HttpPostedFileBase scenarioXml;
|
---|
19 |
|
---|
20 | public HttpPostedFileBase ScenarioXml {
|
---|
21 | get { return scenarioXml; }
|
---|
22 | set { scenarioXml = value; }
|
---|
23 | }
|
---|
24 |
|
---|
25 | }
|
---|
26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.