- Timestamp:
- 04/16/13 08:57:22 (12 years ago)
- Location:
- branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/DAL.cs
r9350 r9362 36 36 } 37 37 38 39 public interface IVisualExtensionDao { 40 bool Add(string algorithmId, string script); 41 bool DeleteById(string algorithmId); 42 string FindById(string algorithmId); 43 } 44 38 45 public interface IDataAccessLayer { 39 46 IScenarioDao ScenarioDao { get; } 40 47 IBlobDao BlobDao { get; } 41 48 IExperimentDao ExperimentDao { get; } 49 IVisualExtensionDao VisualExtensionDao { get; } 42 50 } 51 43 52 44 53 public static class DataAccessLayerProvider { -
branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/IControllerService.cs
r9324 r9362 66 66 [OperationContract] 67 67 Experiment GetExperimentById(User u, string nodeId); 68 69 [OperationContract] 70 string GetVisualExtension(string algorithmId); 71 72 [OperationContract] 73 bool AddVisualExtension(string algorithmId, string script); 74 75 [OperationContract] 76 bool DeleteVisualExtension(string algorithmId); 68 77 } 69 78 } -
branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/IScenarioManager.cs
r9324 r9362 28 28 29 29 bool DispatchExperiment(User user, Experiment exp, JobExecutionDetails details); 30 31 string GetVisualExtension(string algorithmId); 30 32 } 31 33 } -
branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/Model/ControllerModel.cs
r9350 r9362 483 483 [DataMember] 484 484 public IList<Parameter> InputParameters { get; set; } 485 486 public string AlgorithmName { get; set; } 485 487 } 486 488
Note: See TracChangeset
for help on using the changeset viewer.