예제 #1
0
 public DTOResponse(DTOResponseError error, List <object> datarows, DTOQueryPerformance performance)
     : this(error, datarows)
 {
     this.performance = performance;
 }
예제 #2
0
 public DTOPagedResponse(DTOResponseError error, List <object> datarows, DTOResponsePagingInfo paginginfo, string sql, DTOQueryPerformance performance)
     : this(error, datarows, paginginfo, sql)
 {
     this.performance = performance;
 }
예제 #3
0
 public DTOResponse(DTOResponseError error, DTOResponseData data, DTOQueryPerformance performance)
     : this(error, data)
 {
     this.performance = performance;
 }