Beispiel #1
0
 public bool DeleteDocumentType(PMDocumentType pmDocumentType)
 {
     _pmRepository.Delete(pmDocumentType, _pmRepository.GetApplicationDbContext);
     return(true);
 }
Beispiel #2
0
 public PMDocumentType UpdateDocumentType(PMDocumentType pmDocumentType)
 {
     return(_pmRepository.Update(pmDocumentType, _pmRepository.GetApplicationDbContext));
 }
Beispiel #3
0
 //Document Types
 public PMDocumentType AddDocumentType(PMDocumentType pmDocumentType)
 {
     return(_pmRepository.Insert(pmDocumentType, _pmRepository.GetApplicationDbContext));
 }