c

cqrs.writemodel

AdminCRUD

class AdminCRUD extends AnyRef

This class represent the implementation of CRUD (Create, Read, Update, Delete) for admin.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AdminCRUD
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AdminCRUD()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. 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

  11. 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

  12. 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

  13. 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

  14. 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

  15. 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

  16. 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

  17. 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

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. 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

  25. 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

  26. 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

  27. 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

  28. 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

  29. 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

  30. 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

  31. 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

  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped