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

Last change on this file since 967 was 241, checked in by gav, 14 years ago

Undo the AssignedGroup implementation by reverse merge r240:r239.

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.