- Timestamp:
- 04/24/13 13:40:43 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/DAL.cs
r9362 r9395 30 30 } 31 31 32 public interface IJobDao { 33 bool Add(string username, Experiment experiment, string jobId); 34 bool Delete(string username, string jobId); 35 Experiment FindByJobId(string username, string jobId); 36 } 37 32 38 public interface IBlobDao { 33 39 bool Add(StringEntry entry); … … 41 47 bool DeleteById(string algorithmId); 42 48 string FindById(string algorithmId); 49 bool Exists(string algorithmId); 43 50 } 44 51 … … 48 55 IExperimentDao ExperimentDao { get; } 49 56 IVisualExtensionDao VisualExtensionDao { get; } 57 IJobDao JobDao { get; } 50 58 } 51 59
Note: See TracChangeset
for help on using the changeset viewer.