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