Exemplo n.º 1
0
 public ResearchApplicationData(ResearchApplication application, ResearchPool pool)
 {
     if (application == null)
     {
         throw new ArgumentNullException("application");
     }
     if (pool == null)
     {
         throw new ArgumentNullException("pool");
     }
     _application = application;
     _pool        = pool;
 }
Exemplo n.º 2
0
 public ResearchFieldData(ResearchField field, ResearchPool pool)
 {
     if (field == null)
     {
         throw new ArgumentNullException("field");
     }
     if (pool == null)
     {
         throw new ArgumentNullException("pool");
     }
     _field = field;
     _pool  = pool;
 }