示例#1
0
 public SearchResultsDto()
 {
     FinalProt = new List <ProteinDto>();
     Times     = new ExecutionTimeDto();
 }
示例#2
0
 public SearchResultsDto(string qId, List <ProteinDto> prt, ExecutionTimeDto t)
 {
     QueryId   = qId;
     FinalProt = prt;
     Times     = t;
 }