Beispiel #1
0
 public IActionResult DeleteStudentFIle(string Id, string type)
 {
     try
     {
         var result = _student.DeleteUploadedFile(Id, type);
         return(Ok(result));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }