public bool RemoveRiskDocument(string projectId, string documentId)
 {
     try
     {
         _ampRepository.DeleteRiskDocument(documentId, projectId);
         _ampRepository.Save();
         //Tuple<string> valuesTuple = new Tuple<string>("Success");
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }