public async Task <Guid> Create(Models.ProjetsUtilisateurs projutil) { try { var context = CreateContext(); var created = new Data.ProjetsUtilisateurs { ProjetId = projutil.ProjetId, UtilisateurId = projutil.UtilisateurId, Id = projutil.Id, }; var enr = await context ._ProjetsUtilisateurs .AddAsync(created); await context.SaveChangesAsync(); return(enr.Entity.Id); } catch (DbUpdateException e) { Console.WriteLine(e.Message); return(projutil.Id); } }
public async Task Delete(Models.ProjetsUtilisateurs projutil) { try { var context = CreateContext(); var toDelete = await context._ProjetsUtilisateurs.FindAsync(projutil.Id); if (toDelete != null) { context._ProjetsUtilisateurs.Remove(toDelete); await context.SaveChangesAsync(); } } catch (DbUpdateException e) { Console.WriteLine(e.Message); } }