RESTapi with ability to upload images
Responses have similar structure:
data: ~
message: ~
status: ~
GET: /orders/
Take no params
Returns list of all orders
Example:

POST: /orders/create
Take params:
file: multipart/form-data, required
order: application/json, required
Creates new order, and returns it
Example:

DELETE: /orders/delete/{id}
Takes PathParam - id (Long)
Returns general response form with data:""
Example:
