#590 add explanation for Dao

This commit is contained in:
Ilkka Seppälä
2020-07-18 10:22:43 +03:00
parent 68fa6f451b
commit 76fb9aff8b
2 changed files with 293 additions and 3 deletions

View File

@ -35,7 +35,7 @@ public class Customer {
/**
* Creates an instance of customer.
*/
public Customer(final int id, final String firstName, final String lastName) {
public Customer(int id, String firstName, String lastName) {
this.id = id;
this.firstName = firstName;
this.lastName = lastName;