public bool UpdateWorkPlan(TProjectWorkPlan entity)
 {
     _workPlanRepository.Update(entity);
     return(true);
 }
 public bool AddWorkPlan(TProjectWorkPlan entity)
 {
     entity.ActualEffort = Convert.ToDecimal(0.00);
     _workPlanRepository.Insert(entity);
     return(true);
 }