Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/13 08:57:22 (11 years ago)
Author:
fschoepp
Message:

#1888:

  • Added IVisualExtensionDao to the backend representing js extension that create new viewable elements of an algorithm.
  • Started to upgrade the frontend to render those new javascript UI extensions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/DAL.cs

    r9350 r9362  
    3636  }
    3737
     38
     39  public interface IVisualExtensionDao {
     40    bool Add(string algorithmId, string script);
     41    bool DeleteById(string algorithmId);
     42    string FindById(string algorithmId);
     43  }
     44
    3845  public interface IDataAccessLayer {
    3946    IScenarioDao ScenarioDao { get; }
    4047    IBlobDao BlobDao { get; }
    4148    IExperimentDao ExperimentDao { get; }
     49    IVisualExtensionDao VisualExtensionDao { get; }
    4250  }
     51
    4352
    4453  public static class DataAccessLayerProvider {   
Note: See TracChangeset for help on using the changeset viewer.