https://github.com/oguzadali/employee-aspnet-web-api
https://github.com/oguzadali/employee-aspnet-web-api
aspnet-web-api csharp mssql-database
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oguzadali/employee-aspnet-web-api
- Owner: oguzadali
- Created: 2021-06-24T20:58:05.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-24T21:30:27.000Z (about 5 years ago)
- Last Synced: 2025-05-16T11:11:20.578Z (about 1 year ago)
- Topics: aspnet-web-api, csharp, mssql-database
- Language: C#
- Homepage:
- Size: 551 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# employee-aspnet-web-api
## Department
GET api/Department
POST api/Department
```JSON
{
"ID": 1,
"DepartmentName": "sample string 2"
}
```
PUT api/Department
DELETE api/Department/{id}
## Employee
GET api/Employee
POST api/Employee
```JSON
{
"EmployeeID": 1,
"EmployeeName": "sample string 2",
"Department": "sample string 3",
"MailID": "sample string 4",
"DOJ": "2021-06-25T00:24:14.2740724+03:00"
}
```
PUT api/Employee
DELETE api/Employee/{id}