public string Post([FromBody] BcQuantity bcquantity) { //Create db.BcQuantity.Add(bcquantity); db.SaveChanges(); return(JsonConvert.SerializeObject(bcquantity)); }
public string Delete([FromBody] BcQuantity bcquantity) { db.BcQuantity.Remove(bcquantity); db.SaveChanges(); return(JsonConvert.SerializeObject("Ok")); }
public void Put(int id, [FromBody] BcQuantity bcquantity) { //Update db.BcQuantity.Update(bcquantity); db.SaveChanges(); }