Sha256: 6d9b166a41cff844d087b0525577da2fca4151cea069693c9079d8e707cb1700
Contents?: true
Size: 566 Bytes
Versions: 126
Compression:
Stored size: 566 Bytes
Contents
module MPXJ # Represents a relationship between a task and a resource in a project plan class Assignment < Container # Retrieve the task associated with this assignment # # @return [Task] the task associated with this assignment. def task parent_project.get_task_by_unique_id(task_unique_id) end # Retrieve the resource associated with this assignment # # @return [Resource] the resource associated with this assignment. def resource parent_project.get_resource_by_unique_id(resource_unique_id) end end end
Version data entries
126 entries across 126 versions & 1 rubygems