public string EditDoctorProfile(Doctors aDoctor)
        {
            int rowAffected = aDoctorGateway.EditDoctorProfile(aDoctor);

            if (rowAffected > 0)
            {
                return("Success");
            }
            return("Doctor info updating failed");
        }