Esempio n. 1
0
 private static SonarQubeQualityProfile FromResponse(QualityProfileResponse response) =>
 new SonarQubeQualityProfile(
     response.Key, response.Name, response.Language, response.IsDefault, response.LastRuleChange);
Esempio n. 2
0
 public static SonarQubeQualityProfile FromResponse(QualityProfileResponse response, DateTime timeStamp)
 {
     return(new SonarQubeQualityProfile(response.Key, response.Name, response.Language, response.IsDefault, timeStamp));
 }