Is this some rule that if I have multiple Facade classes they must be combined in 1 Facade Class?
For example, I have a Hospital System with different classes, like Appointment, Patient, Doctor, Medicine.
I created different Facade Classes like, OPD_Facade, Pharmacy_Facade, Visit_Facade, all of them are independent with each other and internally using the other classes and exposing simple methods. My UI (which is client of facade classes) uses appropriate facade to perform different tasks.
Do I need to create 1 central Facade class where these Facade classes must be linking together? Or this whole scheme is NOT actually Facade Pattern? The examples I am seeing on internet usually have 1 central Facade class.