-
Notifications
You must be signed in to change notification settings - Fork 3
Business Logic Layer
kevinleonard edited this page Mar 14, 2016
·
8 revisions
This layer holds all the business logic for the project
Right now it mostly holds classes that extend android activities but we may want to change that so it only holds logic or utilities used by multiple classes.
Here is a list of the currently permissible actions for the Animal Inventory Management System:
- Add Birds
- Add Experiments
- Add Medical History Event for a bird
- Search Birds
- Search Experiments
- View Birds
- View Experiments
- Edit Birds
- Edit Experiments
Keep reusability in mind and if something is going to be needed by another class it should probably be broken off into its own utility.