Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public BlgWrapper()
 {
     result_ref   = new Dictionary <string, Dictionary <string, string> >();
     result_histo = new Dictionary <string, Dictionary <string, List <HistoData> > >();
     errors       = new Dictionary <string, string>();
     Options      = new BlgOptions();
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="_options">Options list</param>
 public BlgTransactor(BlgOptions _options = null)
 {
     if (_options == null)
     {
         options = new BlgOptions();
     }
     else
     {
         options = _options;
     }
     open_session();
     counter = 0;
 }