public vm_boeking_productieeenheid(GmmDbContext pContext)
 {
     _context = pContext;
     _boekingProductieEenheid = new BoekingProductieEenheid {
         Id = 0, BoekingId = 0, ProductieEenheidId = 0
     };
 }
 public void GetBoekingProductieEenheidById(int pBoekingProductieEenheidId)
 {
     _boekingProductieEenheid = (_context.BoekingProductieEenheden.Where(b => b.Id == pBoekingProductieEenheidId).SingleOrDefault());
 }
 public vm_boeking_productieeenheid(GmmDbContext pContext, BoekingProductieEenheid pProductieEenheid) : this(pContext)
 {
     _boekingProductieEenheid = pProductieEenheid;
 }