@Override public long deleteDocumentType(long id) { DocumentType documentType = documentTypeDao.getDocumentTypeById(id); documentType.setStatus('D'); return documentTypeDao.addDocumentType(documentType); }
public long addDocumentType(DocumentType documentType) { documentType.setStatus('A'); return documentTypeDao.addDocumentType(documentType); }