Example #1
0
    private PromoterLoader _promoterLoader; //!< The loader that will load everything about Promoter reactions

    #endregion Fields

    #region Constructors

    //! Default constructor
    public FileLoader()
    {
        _promoterLoader = new PromoterLoader();
        _enzymeReactionLoader = new EnzymeReactionLoader();
        _allosteryLoader = new AllosteryLoader();
        _instantReactionLoader = new InstantReactionLoader();
    }
Example #2
0
 //   private PromoterParser _parser;
 //   private LinkedList<IReaction> _reactions;
 //   private ArrayList             _molecules;
 public FileLoader()
 {
     _promoterLoader = new PromoterLoader();
     _enzymeReactionLoader = new EnzymeReactionLoader();
     _allosteryLoader = new AllosteryLoader();
     _instantReactionLoader = new InstantReactionLoader();
     //     _parser = new PromoterParser();
     //     _reactions = new LinkedList<IReaction>();
     //     _molecules = new ArrayList();
 }