Phranakorn Rajabhat University Library

ภาษาอังกฤษสำหรับพนักงานโรงพยาบาล = Professional hospital English for Thailand /

ฮิว, ลีออง

ภาษาอังกฤษสำหรับพนักงานโรงพยาบาล = Professional hospital English for Thailand / Hugh Leong และ Kidd Pongsadhat - กรุงเทพฯ : ซิลค์เวอร์ม, 2554 - 254 หน้า : ภาพประกอบ ; 24 ซม. + 1 ซีดีรอม

Registering the Patient P. 9-20 -- Interviewing the Patient P. 21-32 -- Talking to the Patient P. 33-43 -- Preparing Medication P.44-54 -- Making an Appointment P.55-65 -- Treating an Emergency P.66-77 -- Admitting the Patient P.78-88 -- Transferring the Patient P.89-99 -- Helping the Patient P.100-110 -- Taking X-Rays P.111-121 -- Looking for the Problem P.122-132 -- Treating High Blood Pressure P.133-143 -- Caring for the Patient's Teeth P.144-154 -- Doing an Ultrasound P.155-164 -- Taking car of the Baby P.165-174 -- Receviving a Call P.175-186 -- Giving an Injection P.187-197 -- Doing Blood Tests P.198-208 -- Following Up P.209-219 -- Settling The Bill P.220-252

9789749511497 350


ภาษาอังกฤษ--บทสนทนาและวลี
ภาษาอังกฤษ--การใช้ภาษา
ภาษาอังกฤษ--ตำราสำหรับชนต่างชาติ

PE 1311 / ฮ461ภ 2554

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });