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