Exemplo n.º 1
0
 public Results(string qId, List <Proteins> prt, ExecutionTime t)
 {
     QueryId   = qId;
     FinalProt = prt;
     Times     = t;
 }
Exemplo n.º 2
0
 public Results()
 {
     FinalProt = new List <Proteins>();
     Times     = new ExecutionTime();
 }
Exemplo n.º 3
0
 public DetailedResults()
 {
     ExecutionTime = new ExecutionTime();
     Paramters     = new SearchParametersDto();
     Results       = new ResultsDto();
 }