public static string ToText(this CouchPartName couchPart) { return(UnCamelCase(couchPart.ToString())); }
private List <CouchPart> RemoveCouchPart(List <CouchPart> usedCouchParts, CouchPartName partToRemove) { return(usedCouchParts.Where(part => part.couchPartName != partToRemove).ToList()); }