public IFetchEcuCertCheckingResult Build(PsdzFetchEcuCertCheckingResult psdzFetchEcuCertCheckingResult)
 {
     if (psdzFetchEcuCertCheckingResult == null)
     {
         return(null);
     }
     return(this.BuildFetchEcuCertCheckingResult(psdzFetchEcuCertCheckingResult));
 }
 private IFetchEcuCertCheckingResult BuildFetchEcuCertCheckingResult(PsdzFetchEcuCertCheckingResult psdzFetchEcuCertCheckingResult)
 {
     if (psdzFetchEcuCertCheckingResult == null)
     {
         return(null);
     }
     return(new FetchEcuCertCheckingResult
     {
         FailedEcus = this.BuildEcuCertCheckingResultFailedEcus(psdzFetchEcuCertCheckingResult.FailedEcus),
         Results = this.BuildEcuCertCheckingResults(psdzFetchEcuCertCheckingResult.Results)
     });
 }