An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# RESTfulClient

RESTful web service with .NET 5, C# and SQL Server; It contains the main HTTP methods
![screenshot](./ClientMethods.jpg)

## 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.