curl 'http://localhost:5000/weatherforecast'
curl 'http://localhost:5000/swagger'
curl 'http://localhost:5000/api/v1/Account/register' \
-X POST \
-H 'Content-Type: application/json' \
--data-raw '{"email":"nguyentrucxjnh@gmail.com","password":"Aa@123456","confirmPassword":"Aa@123456"}'
curl 'http://localhost:5000/api/v1/Account/login' \
-X POST \
-H 'Content-Type: application/json' \
--data-raw '{"email":"nguyentrucxjnh@gmail.com","password":"Aa@123456","rememberMe":false}'
curl 'http://localhost:5000/api/v1/Account/refresh' \
-X POST \
-H 'Content-Type: application/json' \
--data-raw '{"accessToken":"","refreshToken":""}'
curl 'http://localhost:5000/api/v1/Account/current' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN'
curl 'http://localhost:5000/api/v1/Customer' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN'
Get Customers By Pagination