source: trunk/src/grails-app/domain/AssignedPerson.groovy @ 96

Last change on this file since 96 was 96, checked in by gav, 15 years ago

Implemented the bulk of AssignedPerson? domain

File size: 377 bytes
Line 
1class AssignedPerson {
2
3    Person person
4    Task task
5    Integer estimatedHour = 0
6    Integer estimatedMinute = 0
7
8    static constraints = {
9        task()
10        person()
11        estimatedHour(min:0)
12        estimatedMinute(min:0,max:59)
13    }
14
15    String toString() {
16        "${person.firstName} ${person.lastName} - ${estimatedHour}h : ${estimatedMinute}min"
17    }
18}
Note: See TracBrowser for help on using the repository browser.