class AdminCRUD extends AnyRef
This class represent the implementation of CRUD (Create, Read, Update, Delete) for admin.
- Alphabetic
- By Inheritance
- AdminCRUD
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new AdminCRUD()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
insertAnesthetist(anesthetist: Anesthetist): String
This method is used to insert a new professional figure, anesthetist, in this case, in the database.
This method is used to insert a new professional figure, anesthetist, in this case, in the database.
- anesthetist
professional figure to insert
- returns
string representing the result
-
def
insertCardiologist(cardiologist: Cardiologist): String
This method is used to insert a new professional figure, cardiologist, in this case, in the database.
This method is used to insert a new professional figure, cardiologist, in this case, in the database.
- cardiologist
professional figure to insert
- returns
string representing the result
-
def
insertGeneralPractitioner(generalPractitioner: GeneralPractitioner): String
This method is used to insert a new professional figure, general practitioner, in this case, in the database.
This method is used to insert a new professional figure, general practitioner, in this case, in the database.
- generalPractitioner
professional figure to insert
- returns
string representing the result
-
def
insertInstrumentalist(instrumentalist: Instrumentalist): String
This method is used to insert a new professional figure, instrumentalist, in this case, in the database.
This method is used to insert a new professional figure, instrumentalist, in this case, in the database.
- instrumentalist
professional figure to insert
- returns
string representing the result
-
def
insertPatient(patient: Patient): String
This method is used to insert a new patient in the database.
This method is used to insert a new patient in the database.
- patient
patient to insert
- returns
string representing the result
-
def
insertRescuer(rescuer: Rescuer): String
This method is used to insert a new professional figure, rescuer, in this case, in the database.
This method is used to insert a new professional figure, rescuer, in this case, in the database.
- rescuer
professional figure to insert
- returns
string representing the result
-
def
insertSurgeon(surgeon: Surgeon): String
This method is used to insert a new professional figure, surgeon, in this case, in the database.
This method is used to insert a new professional figure, surgeon, in this case, in the database.
- surgeon
professional figure to insert
- returns
string representing the result
-
def
insertWardNurse(wardNurse: WardNurse): String
This method is used to insert a new professional figure, ward nurse, in this case, in the database.
This method is used to insert a new professional figure, ward nurse, in this case, in the database.
- wardNurse
professional figure to insert
- returns
string representing the result
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
updateAnesthetist(doctorID: DoctorID, anesthetist: Anesthetist): String
This method is used to update an existing professional figure, anesthetist, in this case, in the database.
This method is used to update an existing professional figure, anesthetist, in this case, in the database.
- doctorID
professional figure's id
- anesthetist
professional figure updated
- returns
string representing the result
-
def
updateCardiologist(doctorID: DoctorID, cardiologist: Cardiologist): String
This method is used to update an existing professional figure, cardiologist, in this case, in the database.
This method is used to update an existing professional figure, cardiologist, in this case, in the database.
- doctorID
professional figure's id
- cardiologist
professional figure updated
- returns
string representing the result
-
def
updateGeneralPractitioner(doctorID: DoctorID, generalPractitioner: GeneralPractitioner): String
This method is used to update an existing professional figure, general practitioner, in this case, in the database.
This method is used to update an existing professional figure, general practitioner, in this case, in the database.
- doctorID
professional figure's id
- generalPractitioner
professional figure updated
- returns
string representing the result
-
def
updateInstrumentalist(doctorID: DoctorID, instrumentalist: Instrumentalist): String
This method is used to update an existing professional figure, instrumentalist, in this case, in the database.
This method is used to update an existing professional figure, instrumentalist, in this case, in the database.
- doctorID
professional figure's id
- instrumentalist
professional figure updated
- returns
string representing the result
-
def
updatePatient(patientID: PatientID, patient: Patient): String
This method is used to update an existing patient in the database.
This method is used to update an existing patient in the database.
- patientID
patient's id
- patient
patient updated
- returns
string representing the result
-
def
updateRescuer(doctorID: DoctorID, rescuer: Rescuer): String
This method is used to update an existing professional figure, rescuer, in this case, in the database.
This method is used to update an existing professional figure, rescuer, in this case, in the database.
- doctorID
professional figure's id
- rescuer
professional figure updated
- returns
string representing the result
-
def
updateSurgeon(doctorID: DoctorID, surgeon: Surgeon): String
This method is used to update an existing professional figure, surgeon, in this case, in the database.
This method is used to update an existing professional figure, surgeon, in this case, in the database.
- doctorID
professional figure's id
- surgeon
professional figure updated
- returns
string representing the result
-
def
updateWardNurse(doctorID: DoctorID, wardNurse: WardNurse): String
This method is used to update an existing professional figure, ward nurse, in this case, in the database.
This method is used to update an existing professional figure, ward nurse, in this case, in the database.
- doctorID
professional figure's id
- wardNurse
professional figure updated
- returns
string representing the result
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated