-
Notifications
You must be signed in to change notification settings - Fork 1
AspNetCore Implementation
Furkan Güngör edited this page Apr 24, 2022
·
3 revisions
Step 1 : Install Package
Install EasyWeb.AspNetCore
from Nuget Package
Step 2 : Implementation of Controller
This namespace includes base controllers for api or mvc controllers.
using EasyWeb.AspNetCore.Controllers;
public class YourController : BaseApiController
{
// Rest of your stuffs.
}
Step 3 : Result
{
"success": true,
"key": "OK",
"data": [
"Furkan",
"Enis",
"Okan",
"Erol"
]
}
Welcome to the EasyWeb
wiki!
Topics:
- Getting Started