public void Update(int id, HealthProfile healthProfile)
 {
     //Update the health profile and save changes
     _db.Entry(healthProfile).State = EntityState.Modified;
     _db.SaveChanges();
 }
Ejemplo n.º 2
0
 public void Update(int id, HealthProfile bmi)
 {
     _db.Entry(bmi).State = EntityState.Modified;
     _db.SaveChanges();
 }