Example #1
0
 public PMReview UpdatePerformanceReview(PMReview performanceReview)
 {
     return(_pmRepository.Update(performanceReview, _pmRepository.GetApplicationDbContext));
 }
Example #2
0
 public bool DeletePerformanceReview(PMReview performanceReview)
 {
     _pmRepository.Delete(performanceReview, _pmRepository.GetApplicationDbContext);
     return(true);
 }
Example #3
0
 public PMReview AddPerformanceReview(PMReview performanceReview)
 {
     return(_pmRepository.Insert(performanceReview, _pmRepository.GetApplicationDbContext));
 }