public void Delete(int id)
 {
     using (var ctx = new AanwezigheidslijstDbContext())
     {
         var doc = new Docent()
         {
             Id = id
         };
         ctx.Attach(doc);
         ctx.Remove(doc);
         ctx.SaveChanges();
     }
 }
        public void Create(CreateDocent docent)
        {
            using (var ctx = new AanwezigheidslijstDbContext())
            {
                ctx.Add(new Docent()
                {
                    Bedrijf = docent.Bedrijf,
                    Naam    = docent.Naam
                });

                ctx.SaveChanges();
            }
        }