GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IProcessReference.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using PlugInsInterfaces.ResultTypes;
6 
7 namespace PlugInsInterfaces.DataTypes.Pathway
8 {
12  public interface IProcessReference
13  {
17  int Reference { get; set; }
23  Dictionary<int, IResults> GetResults(IData data);
24 
25  }
26 }
A reference to the definition of a process as used in a pathway
Contains the database necessary to perform calculations
Definition: IData.cs:20