this repo conatains facecare application
- android studio
- facecare-backend-js-server running - (https://github.com/RazGavrieli/facecare-backend-js-server)
faceCare app is a generic & scalable appointment scheduling app. Allows users to easily connect and authenticate through SMS code and schedule an appointment quickly. Allows the admin to view and manage future appointments, configure types of available services and set working days.
In our project the ‘dataAccess’ class is the model . the model reading and writing to the database and includes all the operations that related to the business core of the application. The model receives information from the presenter and stores what is needed in a database. And it pulls information from the database and transfers to the presenter.
Model - all the activity Everything that related to the display , which is actually all the activity in project.
- MainScreen
- AdminLogin
- AdminManageAppointments
- AdminScheduleClients
- AdminServices
- AdminView
- AdminWorkplan
- UserLogin
- HomeActivity
- The presenter is actually the middleman in the system. It is between the model and the view and transfers information between them without there being a direct connection between the model and the view .
- In our system the presenter is the class ‘businessLogicPresenter’ . this class takes information from the view and send it to the model (dataAccessModel) .