blob: 7e078b2fb847f84f115d708c5221615ed45a6dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using DSACore.Models;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace DSACore.Controllers
{
[Route("api/[controller]")]
public class CommandsController : Controller
{
// GET: api/<controller>
[HttpGet]
public string Get()
{
return "Dies ist die supa dolle Web Api";
}
// GET api/<controller>/5
/*[HttpGet("{id}")]
public string Get(int id)
{
return "value";
}*/
// POST api/<controller>/Felis
[HttpPost]
public string Post([FromBody]Command cmd)
{
try
{
return Commands.CommandHandler.ExecuteCommand(cmd);
}
catch (Exception e)
{
return $"Ein Fehler ist aufgetreten: \n {e.Message}";
}
}
/*
// PUT api/<controller>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/<controller>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
}*/
}
}
|