-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemsController.cs
More file actions
43 lines (38 loc) · 992 Bytes
/
Copy pathItemsController.cs
File metadata and controls
43 lines (38 loc) · 992 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Web.Http.Cors;
using BanjirModel;
namespace MyBanjirWeb
{
[EnableCors(origins: "*", headers: "*", methods: "*")]
public class ItemsController : ApiController
{
BanjirEntities db = new BanjirEntities();
// GET api/<controller>
public IEnumerable<Item> Get()
{
return db.Items.OrderByDescending(p => p.ID);
}
// 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)
{
}
}
}