예제 #1
0
 public bool DeleteReportingStructure(PMReviewReportingStructure pmReviewReportingStructure)
 {
     _pmRepository.Delete(pmReviewReportingStructure, _pmRepository.GetApplicationDbContext);
     return(true);
 }
예제 #2
0
 public PMReviewReportingStructure UpdateDocumentType(PMReviewReportingStructure pmReviewReportingStructure)
 {
     return(_pmRepository.Update(pmReviewReportingStructure, _pmRepository.GetApplicationDbContext));
 }
예제 #3
0
 //Reporting Structure
 public PMReviewReportingStructure AddReportingStructure(PMReviewReportingStructure pmReviewReportingStructure)
 {
     return(_pmRepository.Insert(pmReviewReportingStructure, _pmRepository.GetApplicationDbContext));
 }