public ActionResult AddDrugs([FromBody] Drug drug)
 {
     _drugService.AddConfirmedDrug(drug);
     return(Ok(drug.Id));
 }