public async Task <IHttpActionResult> PutCuentasPorPagar(int id, CuentasPorPagar cuentasPorPagar)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != cuentasPorPagar.CuentasPorPagarID)
            {
                return(BadRequest());
            }

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

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

            return(StatusCode(HttpStatusCode.NoContent));
        }
        public async Task <IHttpActionResult> PostCuentasPorPagar(CuentasPorPagar cuentasPorPagar)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            db.CuentasPorPagars.Add(cuentasPorPagar);
            await db.SaveChangesAsync();

            return(CreatedAtRoute("DefaultApi", new { id = cuentasPorPagar.CuentasPorPagarID }, cuentasPorPagar));
        }
        public async Task <IHttpActionResult> DeleteCuentasPorPagar(int id)
        {
            CuentasPorPagar cuentasPorPagar = await db.CuentasPorPagars.FindAsync(id);

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

            db.CuentasPorPagars.Remove(cuentasPorPagar);
            await db.SaveChangesAsync();

            return(Ok(cuentasPorPagar));
        }