public GraphConfiguration(GraphContextBase context, string label, string collectionLabel) : base(context)
 {
     _label           = label;
     _collectionLabel = collectionLabel;
 }
Ejemplo n.º 2
0
 public GraphConfiguration(GraphContextBase context)
 {
     _context = context;
 }
 protected GraphConfigurationBase(GraphContextBase context)
 {
     _context = context;
 }