public async Task <IActionResult> Post([FromBody] Prescription prescription)
        {
            //If user is a DR, create a new prescription for a patient

            //If user is a patient, return 403 forbidden
            var new_prescription = await _clinicRepository.AddPrescriptionAsync(prescription);

            if (new_prescription is Domain.Models.Prescription)
            {
                return(CreatedAtAction(nameof(Get), new { id = new_prescription.Id }, new_prescription));
            }
            else
            {
                return(BadRequest());
            }
        }