https://github.com/moraeslucas/restfulclient
RESTful web service with .NET 5, JSON and MS SQL Server; It contains the main HTTP methods
https://github.com/moraeslucas/restfulclient
dotnet json ms-sqlserver
Last synced: 11 days ago
JSON representation
RESTful web service with .NET 5, JSON and MS SQL Server; It contains the main HTTP methods
- Host: GitHub
- URL: https://github.com/moraeslucas/restfulclient
- Owner: moraeslucas
- License: mit
- Created: 2020-07-21T05:37:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-17T23:16:32.000Z (over 3 years ago)
- Last Synced: 2025-02-17T23:43:53.923Z (3 months ago)
- Topics: dotnet, json, ms-sqlserver
- Language: C#
- Homepage:
- Size: 1.92 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RESTfulClient
RESTful web service with .NET 5, C# and SQL Server; It contains the main HTTP methods
## Additional Description
This is a Restful Service containing web methods that return their response in JSON. Here is a sample depicting one of these responses:
> [{"clientId":1,"name":"John Smith","address":"1st Street", "phoneNumber":null,"email":"[email protected]","photoFileId":null,
"modifiedBy":"Lucas Moraes","modifiedOn":"2020-06 30T23:25:46.637"},
{"clientId":2,"name":"Will Doe","address":"2st Street", "phoneNumber":null,"email":"[email protected]","photoFileId":null,
"modifiedBy":"Lucas Moraes","modifiedOn":"2020-07-01T23:25:46.546"}]
## How to run this service
You will need the following:
- .NET 5;
- Visual Studio 2019;
- SQL Server 2019 (Script.sql has the SQL commands);**PS:** *RunRestfulClient.bat* opens the index page of this service.