예제 #1
0
        public Guid Insert(Recette recette)
        {
            Context.Recettes.Add(recette);
            Context.SaveChanges();

            return(recette.Id);
        }
예제 #2
0
        public void Update(Guid id, Recette recette)
        {
            var updateRecette = Context.Recettes.Single((x => x.Id == id));

            updateRecette.Name     = recette.Name;
            updateRecette.Picture  = recette.Picture;
            updateRecette.Calories = recette.Calories;
        }
예제 #3
0
 public void Edit(Recette entity)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public void Update(int id, Recette recette)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 long IRecetteRepository.Insert(Recette recette)
 {
     throw new NotImplementedException();
 }
예제 #6
0
 public long Insert(Recette recette)
 {
     throw new NotImplementedException();
 }