aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/StatisticsController.cs
blob: 3799e242bb40ac7dcbbd8a873e54573ed533f370 (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using Tango.TCC.BL.Web;
using Tango.TCC.Service.Filters;
using Tango.TCC.Service.Messages;
using Tango.TCC.Service.Models;
using Tango.TCC.Service.Security;
using Tango.Web.Controllers;
using Tango.Web.Security;

namespace Tango.TCC.Service.Controllers
{
    [JwtTokenFilter]
    public class StatisticsController : TangoController<TokenObject>
    {
        // GET api/<controller>
        public IEnumerable<string> Get()
        {
            return new string[] { "value1", "value2" };
        }

        // GET api/<controller>/5
        public string Get(int id)
        {
            return "value";
        }

        // POST api/<controller>
        public void Post([FromBody]string value)
        {
        }

        // PUT api/<controller>/5
        public void Put(int id, [FromBody]string value)
        {
        }

        // DELETE api/<controller>/5
        public void Delete(int id)
        {
        }
    }
}