public async Task<IHttpActionResult> PostTipoContratacion(TipoContratacion tipoContratacion)
        {
            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            db.TipoContratacions.Add(tipoContratacion);

            try
            {
                await db.SaveChangesAsync();
            }
            catch (DbUpdateException)
            {
                if (TipoContratacionExists(tipoContratacion.Id))
                {
                    return Conflict();
                }
                else
                {
                    throw;
                }
            }

            return CreatedAtRoute("DefaultApi", new { id = tipoContratacion.Id }, tipoContratacion);
        }
        public async Task<IHttpActionResult> PutTipoContratacion(string id, TipoContratacion tipoContratacion)
        {
            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            if (id != tipoContratacion.Id)
            {
                return BadRequest();
            }

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

            try
            {
                await db.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!TipoContratacionExists(id))
                {
                    return NotFound();
                }
                else
                {
                    throw;
                }
            }

            return StatusCode(HttpStatusCode.NoContent);
        }