Beispiel #1
0
 protected SemanticRepositoryBase(IGraphProxy graphProxy)
 {
     GraphProxy = graphProxy;
     GraphProxy.LoadGraph();
 }
 public void Initialize()
 {
     graph = new FakeGraph();
     graph.LoadGraph();
     repository = new ScientificSpecialityRepository(graph);
 }
 public void Initialize()
 {
     graph = new FakeGraph();
     graph.LoadGraph();
     repository = new UniversityRepository(graph);
 }
 public RdfController(IGraphProxy graphProxy)
 {
     this.graphProxy = graphProxy;
 }
Beispiel #5
0
 public SpecialityRepository(IGraphProxy graphProxy) : base(graphProxy)
 {
 }
 public UniversityRepository(IGraphProxy graphProxy) : base(graphProxy)
 {
 }
 public ProfileRepository(IGraphProxy graphProxy) : base(graphProxy)
 {
 }
 public DepartmentRepository(IGraphProxy graphProxy) : base(graphProxy)
 {
 }
Beispiel #9
0
 public void Initialize()
 {
     graph = new FakeGraph();
     graph.LoadGraph();
     repository = new DissertationCouncilRepository(graph);
 }
 public StudyProgrammeRepository(IGraphProxy graphProxy, ISubjectRepository subjectRepository) : base(graphProxy)
 {
     this.subjectRepository = subjectRepository;
 }
 public FormsOfControlRepository(IGraphProxy graphProxy) : base(graphProxy)
 {
 }