public static AccuracyCheck WithCheckSubType(this AccuracyCheck accuracyCheck, CheckSubType checkSubType)
 {
     accuracyCheck.CheckSubType = checkSubType;
     return(accuracyCheck);
 }
 public static CheckSubType WithCheckType(this CheckSubType checkSubType, CheckType checkType)
 {
     checkSubType.CheckType = checkType;
     return(checkSubType);
 }
 public static CheckSubType WithOrganisation(this CheckSubType checkSubType, Organisation organisation)
 {
     checkSubType.Organisation = organisation;
     return(checkSubType);
 }
 public static CheckSubType WithAccuracyCheck(this CheckSubType checkSubType, ICollection <AccuracyCheck> accuracyCheck)
 {
     checkSubType.AccuracyCheck = accuracyCheck;
     return(checkSubType);
 }
 public static CheckSubType WithIsActive(this CheckSubType checkSubType, Boolean isActive)
 {
     checkSubType.IsActive = isActive;
     return(checkSubType);
 }
 public static CheckSubType WithDescription(this CheckSubType checkSubType, String description)
 {
     checkSubType.Description = description;
     return(checkSubType);
 }
 public static CheckSubType WithCheckTypeCode(this CheckSubType checkSubType, Guid checkTypeCode)
 {
     checkSubType.CheckTypeCode = checkTypeCode;
     return(checkSubType);
 }
 public static CheckSubType WithSecurityLabel(this CheckSubType checkSubType, Guid securityLabel)
 {
     checkSubType.SecurityLabel = securityLabel;
     return(checkSubType);
 }