Advertisement
desdemona

łzy

Nov 9th, 2015
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. The task is to create a mobile app with server back-end for managing user's notes regarding grocery products. User should be able to add products that he or she is interested in monitoring. When a new product is added, it is stored on the server with amount equal to 0 (zero). For each existing product three operations should be available:
  2.  
  3. increase amount - invoked when the user buys additional items of the given product,
  4. decrease amount - invoked when some items of the product are consumed,
  5. remove - invoked when the user is no longer interested in monitoring the amount of a given product.
  6.  
  7. For increase amount and decrease amount operations the user should be able to input the quantity of bought/consumed product.
  8.  
  9. Assuming above set of operations, the app can be used to keep track of the number of grocery products stored at home. When shopping this data can be utilized to decide which products have to be acquired so that the user won't run out of stock.
  10.  
  11. The list of products should be stored on the server. It is not required at this stage of the project to store the data on the mobile device (this ability will be added in stage II). All operations on products should immediately call appropriate server API methods, to update the state on the server.
  12.  
  13. The application should handle multiple users. Authentication may be based on login and password credentials or social accounts integration (e.g. signing up with Google account, Facebook account etc).
  14.  
  15. There are no restrictions regarding technologies used for the mobile app and the server side app - use the ones you see fit best.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement