Skip to content

Instantly share code, notes, and snippets.

View CodeDux's full-sized avatar
🌳
--. --- / --- ..- - ... .. -.. .

Kristoffer CodeDux

🌳
--. --- / --- ..- - ... .. -.. .
View GitHub Profile
# Notes:
# - Minimal appveyor.yml file is an empty file. All sections are optional.
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
#---------------------------------#
# general configuration #
#---------------------------------#
namespace aspapi.Controllers
{
public class TaskApiController : ApiController
{
private readonly ITaskRepository taskRepository;
public TaskApiController()
{
taskRepository = new TaskRepository();
}