public IActionResult Index()
        {
            var drugs = _drugService.GetDrugs();

            return(View(drugs));
        }