// List of doctors for a patient
        public ViewResult NewIndex()
        {
            var model = _doctorRepository.GetAllDoctor();

            return(View(model));
        }