public IHttpActionResult PostTDMOPR_ACTIVOS(TDMOPR_ACTIVOS tDMOPR_ACTIVOS)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            db.TDMOPR_ACTIVOS.Add(tDMOPR_ACTIVOS);

            try
            {
                db.SaveChanges();
            }
            catch (DbUpdateException)
            {
                if (TDMOPR_ACTIVOSExists(tDMOPR_ACTIVOS.Id_MOPR))
                {
                    return(Conflict());
                }
                else
                {
                    throw;
                }
            }

            return(CreatedAtRoute("DefaultApi", new { id = tDMOPR_ACTIVOS.Id_MOPR }, tDMOPR_ACTIVOS));
        }
        public IHttpActionResult PutTDMOPR_ACTIVOS(int id, TDMOPR_ACTIVOS tDMOPR_ACTIVOS)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != tDMOPR_ACTIVOS.Id_MOPR)
            {
                return(BadRequest());
            }

            db.Entry(tDMOPR_ACTIVOS).State = EntityState.Modified;

            try
            {
                db.SaveChanges();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!TDMOPR_ACTIVOSExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(StatusCode(HttpStatusCode.NoContent));
        }
        public IHttpActionResult GetTDMOPR_ACTIVOS(int id)
        {
            TDMOPR_ACTIVOS tDMOPR_ACTIVOS = db.TDMOPR_ACTIVOS.Find(id);

            if (tDMOPR_ACTIVOS == null)
            {
                return(NotFound());
            }

            return(Ok(tDMOPR_ACTIVOS));
        }
        public IHttpActionResult DeleteTDMOPR_ACTIVOS(int id)
        {
            TDMOPR_ACTIVOS tDMOPR_ACTIVOS = db.TDMOPR_ACTIVOS.Find(id);

            if (tDMOPR_ACTIVOS == null)
            {
                return(NotFound());
            }

            db.TDMOPR_ACTIVOS.Remove(tDMOPR_ACTIVOS);
            db.SaveChanges();

            return(Ok(tDMOPR_ACTIVOS));
        }