Ejemplo n.º 1
0
 /// <summary>
 /// TODO: not used yet; first create continuing process logic
 /// Plan the resource for a continuing process
 /// </summary>
 /// <param name="str"></param>
 /// <returns></returns>
 public static void PlanForContinuingProcess(this RHumanResource person, Process process, Deliverable deliverable, Activity activity, Period assignedPeriod, double dedication)
 {
     var rep = new ResourceRepository();
     try
     {
         rep.SaveContinuingProcessAssignment(process.Id, person.Id, deliverable.Id, activity.Id, assignedPeriod.StartDate, assignedPeriod.EndDate, dedication);
     }
     catch (Exception ex)
     {
         throw;
     }
 }