Ejemplo n.º 1
0
 public bool UpdateWorkPlan(TProjectWorkPlan entity)
 {
     _workPlanRepository.Update(entity);
     return(true);
 }
Ejemplo n.º 2
0
 public bool AddWorkPlan(TProjectWorkPlan entity)
 {
     entity.ActualEffort = Convert.ToDecimal(0.00);
     _workPlanRepository.Insert(entity);
     return(true);
 }