Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/09 14:28:46 (15 years ago)
Author:
gkronber
Message:

Refactored CEDMA plugins to work with new modeling backend. #712

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.SQLServerCompactBackend/3.2/DatabaseService.cs

    r2185 r2190  
    178178    }
    179179
    180     #endregion
    181 
     180    public IEnumerable<IResult> GetAllResults() {
     181      throw new NotImplementedException();
     182    }
     183
     184    #endregion
     185
     186    #region ModelResult
     187    public IEnumerable<IModelResult> GetModelResults(IModel model) {
     188      throw new NotImplementedException();
     189    }
     190    #endregion
     191
     192    #region Model
     193    public IEnumerable<IDatabaseModel> GetAllModels() {
     194      using (ModelingDataContext ctx = new ModelingDataContext(connection)) {
     195        return ctx.Models;
     196      }
     197    }
     198    #endregion
    182199
    183200  }
Note: See TracChangeset for help on using the changeset viewer.