Ejemplo n.º 1
0
 public static bool IsHarnessAs(this PartDescription description)
 {
     return(description.StartsWith("HARNESS AS") ||
            description.StartsWith("WIRE AS") ||
            description.StartsWith("CABLE AS"));
 }
Ejemplo n.º 2
0
 public static bool IsHybridLines(this PartDescription description)
 {
     return(description.StartsWith("LINE") && description.Contains("HYBR"));
 }
Ejemplo n.º 3
0
 public static bool IsCopperSealingOrSpringWasher(this PartDescription description)
 {
     return(description.StartsWith("WASHER-COPPER") ||
            description.StartsWith("WASHER-SEAL") ||
            description.StartsWith("WASHER-SPRING"));
 }
Ejemplo n.º 4
0
 public static bool IsGasket(this PartDescription description)
 {
     return(description.StartsWith("GASKET"));
 }
Ejemplo n.º 5
0
 public static bool IsHose(this PartDescription description)
 {
     return(description.StartsWith("HOSE"));
 }
Ejemplo n.º 6
0
 public static bool IsBolt(this PartDescription description)
 {
     return(description.StartsWith("BOLT"));
 }
Ejemplo n.º 7
0
 public static bool IsLocknut(this PartDescription description)
 {
     return(description.StartsWith("LOCKNUT"));
 }
Ejemplo n.º 8
0
 public static bool IsCoreAssembly(this PartDescription description)
 {
     return(description.StartsWith("CORE AS"));
 }
Ejemplo n.º 9
0
 public static bool IsCable(this PartDescription description)
 {
     return(description.StartsWith("CABLE AS"));
 }
Ejemplo n.º 10
0
 public static bool IsValveMech(this PartDescription description)
 {
     return(description.StartsWith("VALVE MECH"));
 }
Ejemplo n.º 11
0
 public static bool IsPushrod(this PartDescription description)
 {
     return(description.StartsWith("PUSHROD"));
 }
Ejemplo n.º 12
0
 public static bool IsGearGroup(this PartDescription description)
 {
     return(description.StartsWith("GEAR GP-FRONT") || description.StartsWith("GEAR GP-REAR"));
 }
Ejemplo n.º 13
0
 public static bool IsTensioner(this PartDescription description)
 {
     return(description.StartsWith("TENSIONER"));
 }
Ejemplo n.º 14
0
 public static bool IsBeltOrTensioner(this PartDescription description)
 {
     return(description.StartsWith("BELT"));
 }
Ejemplo n.º 15
0
 public static bool IsWasher(this PartDescription description)
 {
     return(description.StartsWith("WASHER") && !description.StartsWith("WASHER-THR"));
 }
Ejemplo n.º 16
0
 public static bool IsControlGroup(this PartDescription description)
 {
     return(description.StartsWith("CONTROL GP"));
 }
Ejemplo n.º 17
0
 public static bool IsSpacer(this PartDescription description)
 {
     return(description.StartsWith("SPACER"));
 }
Ejemplo n.º 18
0
 public static bool IsPumpGroup(this PartDescription description)
 {
     return(description.StartsWith("PUMP GP"));
 }
Ejemplo n.º 19
0
 public static bool IsNut(this PartDescription description)
 {
     return(description.StartsWith("NUT"));
 }
Ejemplo n.º 20
0
 public static bool IsTurbocharger(this PartDescription description)
 {
     return(description.StartsWith("TURBO"));
 }
Ejemplo n.º 21
0
 public static bool IsSeal(this PartDescription description)
 {
     return(description.StartsWith("SEAL"));
 }
Ejemplo n.º 22
0
 public static bool IsBearingOrBushing(this PartDescription description)
 {
     return(description.StartsWith("BUSHING") ||
            description.StartsWith("BEARING"));
 }
Ejemplo n.º 23
0
 public static bool IsGrommet(this PartDescription description)
 {
     return(description.StartsWith("GROMMET"));
 }
Ejemplo n.º 24
0
 public static bool IsKitPart(this PartDescription description)
 {
     return(description.StartsWith("KIT-"));
 }
Ejemplo n.º 25
0
 public static bool IsSwitch(this PartDescription description)
 {
     return(description.StartsWith("SWITCH AS") ||
            description.StartsWith("SWITCH GP"));
 }
Ejemplo n.º 26
0
 public static bool IsSensor(this PartDescription description)
 {
     return(description.StartsWith("SENSOR"));
 }
Ejemplo n.º 27
0
 public static bool IsIntakeExhaustValve(this PartDescription description)
 {
     return(description.StartsWith("VALVE-IN") || description.StartsWith("VALVE-EX"));
 }
Ejemplo n.º 28
0
 public static bool IsCylinderHead(this PartDescription description)
 {
     return(description.StartsWith("CYLINDER HEAD"));
 }