//// PUT: api/班别/5
        //[ResponseType(typeof(void))]
        //public IHttpActionResult Put班别(Guid id, 班别 班别)
        //{
        //    if (!ModelState.IsValid)
        //    {
        //        return BadRequest(ModelState);
        //    }

        //    if (id != 班别.Id)
        //    {
        //        return BadRequest();
        //    }

        //    db.Entry(班别).State = EntityState.Modified;

        //    try
        //    {
        //        db.SaveChanges();
        //    }
        //    catch (DbUpdateConcurrencyException)
        //    {
        //        if (!班别Exists(id))
        //        {
        //            return NotFound();
        //        }
        //        else
        //        {
        //            throw;
        //        }
        //    }

        //    return StatusCode(HttpStatusCode.NoContent);
        //}

        // POST: api/班别
        //[ResponseType(typeof(班别))]
        //public IHttpActionResult Post班别(班别 班别)
        //{
        //    if (!ModelState.IsValid)
        //    {
        //        return BadRequest(ModelState);
        //    }

        //    db.班别.Add(班别);

        //    try
        //    {
        //        db.SaveChanges();
        //    }
        //    catch (DbUpdateException)
        //    {
        //        if (班别Exists(班别.Id))
        //        {
        //            return Conflict();
        //        }
        //        else
        //        {
        //            throw;
        //        }
        //    }

        //    return CreatedAtRoute("DefaultApi", new { id = 班别.Id }, 班别);
        //}

        // DELETE: api/班别/5
        //[ResponseType(typeof(班别))]
        //public IHttpActionResult Delete班别(Guid id)
        //{
        //    班别 班别 = db.班别.Find(id);
        //    if (班别 == null)
        //    {
        //        return NotFound();
        //    }

        //    db.班别.Remove(班别);
        //    db.SaveChanges();

        //    return Ok(班别);
        //}

        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                db.Dispose();
            }
            base.Dispose(disposing);
        }