Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds the store related methods which includes the
order
,orderLine
,product
,productCategory
,productImage
,question
,questionType
,task
andtaxRate
. Following is the list of added methods to each manager:OrderManager:
create
delete
fulfill
get
list
patch
pay
refund
unfulfill
OrderLineManager
fulfill
get
list
unfulfill
ProductManager:
create
createQuestion
delete
deleteQuestion
get
list
patch
reorder
reorderQuestion
ProductCategoryManager:
create
delete
get
list
patch
reorder
ProductImageManager:
create
delete
get
list
reorder
QuestionManager:
create
delete
get
list
patch
QuestionTypeManager:
list
TaskManager:
complete
create
delete
get
list
patch
reorder
TaxRateManager:
create
delete
get
list
patch
Following is the list of added methods to each model:
OrderModel
delete
fulfill
fulfillOrderLine
getOrderLine
getOrderLines
patch
pay
refund
unfulfill
unfulfillOrderLine
OrderLineModel
fulfill
unfulfill
ProductModel:
createQuestion
delete
deleteQuestion
patch
reorder
reorderQuestion
ProductCategoryModel:
delete
patch
reorder
ProductImageModel:
delete
reorder
QuestionModel:
delete
patch
TaskModel:
complete
delete
patch
reorder
TaxRateModel:
delete
patch