public IHttpActionResult BlockPatient(int id)
 {
     _patientService.BlockPatient(id);
     return(Ok(new ResponseModel("Пациент успешно заблокирован! :)")));
 }