Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IPluginInfoDao.cs @ 3578

Last change on this file since 3578 was 3578, checked in by kgrading, 14 years ago

Removed References to HiveLogging and updated the default logging mechanism (#991)

File size: 387 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.Hive.Contracts.BusinessObjects;
5
6namespace HeuristicLab.Hive.Server.DataAccess {
7  public interface IPluginInfoDao: IGenericDao<HivePluginInfoDto> {   
8    void InsertPluginDependenciesForJob(JobDto jobDto);
9    List<HivePluginInfoDto> GetPluginDependenciesForJob(JobDto jobDto);
10  }
11}
Note: See TracBrowser for help on using the repository browser.