ID =>
1 = Today
2 = tomorrow
3 = current week
- /POST http://localhost:5000/api/todo
- param
{
"Title":"Task A",
"ExpirateDate":"2020-04-15",
"Description":"Doing Task A",
"PercentageComplete":0
}
- /PUT http://localhost:5000/api/todo/{id}
- param
{
"Title":"Task A",
"ExpirateDate":"2020-04-15",
"Description":"Doing Task A",
"PercentageComplete":0
}
- note => id == id todo
id = todo id
percentage = percentage complete
- /DELETE http://localhost:5000/api/todo/{id}
- note => id == id todo
- /GET http://localhost:5000/api/todo/mark-as-done/{id}
- note => id == id todo
- adding swagger
- unit testing
- date validation using regex checking
- using docker