public IHttpActionResult ChangeBonus(ChangeBonusDto changeBonusDto)
 {
     _patientService.ChangeBonus(changeBonusDto);
     return(Ok(new ResponseModel("Бонусный счет пациента изменен успешно! :)")));
 }