Fix for test case using a different constructor

This commit is contained in:
J. Brisbin
2011-04-06 11:51:13 -05:00
parent 9fb1a9e63a
commit ff78ecf1be

View File

@@ -26,6 +26,12 @@ public class PersonCustomIdName extends BasePerson {
@Id
private String lastName;
public PersonCustomIdName(Integer ssn, String firstName) {
this.ssn = ssn;
this.firstName = firstName;
}
public PersonCustomIdName(Integer ssn, String firstName, String lastName) {
this.ssn = ssn;
this.firstName = firstName;