public RDFQueryController(ISession _ISessionRepo, IRdfFile _IRdfFileRepo)
 {
     _ISession = _ISessionRepo;
     _IRdfFile = _IRdfFileRepo;
 }
Пример #2
0
 public UploadFileController(IRdfFile _IRdfFileRepo, ISession _SessionRepo)
 {
     _IRdfFile = _IRdfFileRepo; //To add owl File to the DB.
     _ISession = _SessionRepo;  //To Create Seesion for the User and save the attached owl file.
 }