19 package org.turro.erp.task;
21 import org.turro.erp.entity.AptitudeDegree;
22 import org.turro.erp.entity.HumanResource;
23 import org.turro.erp.entity.Resource;
34 private double dedication;
39 this.humanResource = humanResource;
40 this.resource = resource;
41 this.aptitudeDegree = aptitudeDegree;
42 this.aptitudeAssesment = aptitudeAssesment;
43 this.dedication = dedication;
50 aptitudeAssesment : aptitudeDegree;
51 if(humanResource !=
null && aptitude !=
null) {
52 if(resource !=
null) {
79 aptitudeAssesment : aptitudeDegree;
80 if(humanResource !=
null && aptitude !=
null) {
81 if(resource !=
null) {
ResourceUsageValuation(HumanResource humanResource, Resource resource, AptitudeDegree aptitudeDegree, AptitudeDegree aptitudeAssesment, double dedication)