示例#1
0
 public IEnumerable <Objective> GetAllObjectivesByPDR(int pdrId)
 {
     return(_ObjectiveRepository.GetAll().Where(x => x.PDReviewId == pdrId));
 }
示例#2
0
 public List <Objective> GetAll()
 {
     return(_repository.GetAll());
 }