示例#1
0
        public string GetInfoFromREACTOME([FromForm] string term)
        {
            ExternalDataRepository repository = new ExternalDataRepository();
            string response = repository.GetInfoFromREACTOME(term);

            return(response);
        }
示例#2
0
        public string GetInfoFromGeneNetwork([FromForm] string term)
        {
            ExternalDataRepository repository = new ExternalDataRepository();
            string response = repository.GetInfoFromGeneNetwork(term);

            return(response);
        }
 public ExternalDataService()
 {
     _externalDataRepository = new ExternalDataRepository();
 }