public async Task <IActionResult> GetDrugDoseForm()
        {
            try
            {
                var getresult = await _prescriptionRepository.GetDrugDoseForms();

                return(Ok(getresult));
            }
            catch (Exception ex)
            {
                return(BadRequest());
            }
        }