arditmezini / simple-azure-function

Simple Azure Functions (HTTP, Timer) CRUD operations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

simple-azure-function

This project includes a TodoApi class (HTTP Function) which has 5 functions:

	1. GetTodos	| GET	 | http://localhost:7071/api/todo)
	2. GetTodoById	| GET 	 | http://localhost:7071/api/todo/{id})
    	3. CreateTodo	| POST	 | http://localhost:7071/api/todo)
	4. UpdateTodo	| PUT	 | http://localhost:7071/api/todo/{id})
	5. DeleteTodo	| DELETE | http://localhost:7071/api/todo/{id})

The ResetTodos class (Timer Function) runs at midnight and sets all todo as deleted.

About

Simple Azure Functions (HTTP, Timer) CRUD operations


Languages

Language:C# 100.0%