예제 #1
0
 public void UpdateGin(Gin gin)
 {
     using (GinzContext context = new GinzContext())
     {
         context.Entry(context.Gins.Where(c => c.Id == gin.Id).First()).CurrentValues.SetValues(gin);
         context.SaveChanges();
     }
 }
예제 #2
0
 public void UpdateIngredient(Ingredient ingredient)
 {
     using (GinzContext context = new GinzContext())
     {
         context.Entry(context.Gins.Where(c => c.Id == ingredient.Id).First()).CurrentValues.SetValues(ingredient);
         context.SaveChanges();
     }
 }