public class MyService{
//class fields, getters, setters
public myServiceMethod(Car car){
if(car.getColor()=="Red"){
Print("Red car");
}
if(car.getColor()=="Green"){
Print("Green car");
}
if(car.getColor()=="Yellow"){
Print("Yellow car");
}
if(car.getColor()=="Blue"){
Print("Blue car");
}
//do other business logic
}
}
public class MyService{
//class fields, getters, setters
public myServiceMethod(Car car){
if(car.getColor()=="Red"){
Print("Red car");
}
if(car.getColor()=="Green"){
Print("Green car");
}
if(car.getColor()=="Yellow"){
Print("Yellow car");
}
if(car.getColor()=="Blue"){
Print("Blue car");
}
//do other business logic
}
}