aboutsummaryrefslogtreecommitdiff
blob: aa6f51901b420e573ffb4f37a4218b3237a488e3 (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
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();

        // 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.DefectNumber)
            {
                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.DefectNumber))
                {
                    return Conflict();
                }
                else
                {
                    throw;
                }
            }

            return CreatedAtRoute("DefaultApi", new { id = defect.DefectNumber }, 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.DefectNumber == id) > 0;
        }
    }
}