Ejemplo n.º 1
0
 public NodeRepo()
 {
     _relationShipRepo = new RelationShipRepo();
 }
Ejemplo n.º 2
0
 public static Relationship Get(int relationshipID)
 {
     Persistance.RelationShipRepo db = new RelationShipRepo();
     return db.GetRelationship(relationshipID.ToString());
 }
Ejemplo n.º 3
0
 private Relationship()
 {
     _relationshipRepo = new RelationShipRepo();
     _nodeRepo = new NodeRepo();
     base.SetRepository(_relationshipRepo);
 }
Ejemplo n.º 4
0
 public Node()
 {
     _nodeRepo         = new Persistance.NodeRepo();
     _relationShipRepo = new Persistance.RelationShipRepo();
     base.SetRepository(_nodeRepo);
 }
Ejemplo n.º 5
0
 public Node()
 {
     _nodeRepo = new Persistance.NodeRepo();
     _relationShipRepo = new Persistance.RelationShipRepo();
     base.SetRepository(_nodeRepo);
 }
Ejemplo n.º 6
0
 public NodeRepo()
 {
     _relationShipRepo = new RelationShipRepo();
 }