blob: c5bb0ac140185a9197533e40b3eb4bf83daee979 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Web.Http.Description;
using HousingWebApi;
namespace HousingWebApi.Controllers
{
public class DefectsController : ApiController
{
private DataModel db = new DataModel();
[Route("api/ApartmentDefects/{id}")]
public IQueryable<Defect> GetApartmentDefects(int id)
{
var defectlist = from defect in db.Defects
where (defect.ApartmentId == id)
select defect;
return defectlist;
}
// GET: api/Defects
public IQueryable<Defect> GetDefects()
{
return db.Defects;
}
// GET: api/Defects/5
[ResponseType(typeof(Defect))]
public IHttpActionResult GetDefect(int id)
{
Defect defect = db.Defects.Find(id);
if (defect == null)
{
return NotFound();
}
return Ok(defect);
}
// PUT: api/Defects/5
[ResponseType(typeof(void))]
public IHttpActionResult PutDefect(int id, Defect defect)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
if (id != defect.DefectId)
{
return BadRequest();
}
db.Entry(defect).State = EntityState.Modified;
try
{
db.SaveChanges();
}
catch (DbUpdateConcurrencyException)
{
if (!DefectExists(id))
{
return NotFound();
}
else
{
throw;
}
}
return StatusCode(HttpStatusCode.NoContent);
}
// POST: api/Defects
[ResponseType(typeof(Defect))]
public IHttpActionResult PostDefect(Defect defect)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
db.Defects.Add(defect);
try
{
db.SaveChanges();
}
catch (DbUpdateException)
{
if (DefectExists(defect.DefectId))
{
return Conflict();
}
else
{
throw;
}
}
return CreatedAtRoute("DefaultApi", new { id = defect.DefectId }, defect);
}
// DELETE: api/Defects/5
[ResponseType(typeof(Defect))]
public IHttpActionResult DeleteDefect(int id)
{
Defect defect = db.Defects.Find(id);
if (defect == null)
{
return NotFound();
}
db.Defects.Remove(defect);
db.SaveChanges();
return Ok(defect);
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
db.Dispose();
}
base.Dispose(disposing);
}
private bool DefectExists(int id)
{
return db.Defects.Count(e => e.DefectId == id) > 0;
}
}
}
|