package eleven;
public class ColaEmployee {
String name;
int month;
public ColaEmployee() {
}
public ColaEmployee(String name, int month) {
super();
this.name = name;
this.month = month;
}
public double getSalary(int month) {
return 0;
}
}