Class | Description |
---|---|
AppDatabase |
Database class to hold the database and be the main point for accessing app's persisted data
|
DataConverter |
Convert from raw data in json to list of object string and vice versa
|
Ingredient |
Ingredient represents one ingredient used in a recipe.
|
Recipe |
Models a dessert recipe
|
RecipeDao |
Data access object class RecipeDao provides methods for app to use to query, insert, update, and
delete data in the database
|
RecipeWithIngredients |
This class models the one-to-many relationship between Recipe entity(one) and (to many) Ingredients entity
|