public vm_band(GmmDbContext pContext)
 {
     _context = pContext;
     _band    = new Band {
         Id = 0, KleurCodeId = 4
     };
 }
示例#2
0
 public vm_catering(GmmDbContext pContext)
 {
     _context  = pContext;
     _catering = new Catering {
         Id = 0, AfterShow = false, BoekingId = 0, Special = false, TakeAwayFood = false
     };
 }
 public vm_kleedkamer(GmmDbContext pContext)
 {
     _context    = pContext;
     _kleedkamer = new Kleedkamer {
         Id = 0
     };
 }
示例#4
0
 public vm_voorziening(GmmDbContext pContext)
 {
     _context     = pContext;
     _voorziening = new Voorziening {
         Id = 0, BoekingId = 0, BusStock = 0, CoolersBand = 0, CoolersGmm = 0, Kinesist = false, Runner = 0, V110 = 0, Wasserij = false, Zuurstof = 0
     };
 }
 public vm_begeleiding(GmmDbContext pContext)
 {
     _context     = pContext;
     _begeleiding = new Begeleiding {
         Id = 0, BoekingId = 0, FunctieId = 3, WalkieTalkie = false
     };
 }
 public vm_tent(GmmDbContext pContext)
 {
     _context = pContext;
     _tent    = new Tent {
         Id = 0
     };
 }
示例#7
0
 public vm_functie(GmmDbContext pContext)
 {
     _context = pContext;
     _functie = new Functie {
         Id = 0
     };
 }
 public vm_commentaar_type(GmmDbContext pContext)
 {
     _context        = pContext;
     _commentaarType = new CommentaarType {
         Id = 0
     };
 }
 public vm_boeking_productieeenheid(GmmDbContext pContext)
 {
     _context = pContext;
     _boekingProductieEenheid = new BoekingProductieEenheid {
         Id = 0, BoekingId = 0, ProductieEenheidId = 0
     };
 }
 public vm_kleurcode(GmmDbContext pContext)
 {
     _context   = pContext;
     _kleurCode = new KleurCode {
         Id = 0
     };
 }
示例#11
0
 public vm_boeking_kleedkamer(GmmDbContext pContext)
 {
     _context           = pContext;
     _boekingKleedkamer = new BoekingKleedkamer {
         Id = 0, BoekingId = 0, KleedkamerId = 0
     };
 }
示例#12
0
 public vm_podium(GmmDbContext pContext)
 {
     _context = pContext;
     _podium  = new Podium {
         Id = 0
     };
 }
示例#13
0
 public vm_productie_eenheid(GmmDbContext pContext)
 {
     _context          = pContext;
     _productieEenheid = new ProductieEenheid {
         Id = 0
     };
 }
 public vm_commentaar(GmmDbContext pContext)
 {
     _context    = pContext;
     _commentaar = new Commentaar {
         Id = 0, BoekingId = 0, CommentaarTypeId = 0
     };
 }
示例#15
0
        public vm_boeking(GmmDbContext pContext)
        {
            _context = pContext;
            _boeking = new Boeking {
                Id = 0, BandId = 0, Datum = DateTime.Today, BeginUur = DateTime.Now, EindUur = DateTime.Now.AddHours(2), PodiumId = 0
            };

            Band        = new vm_band(_context);
            KleurCode   = new vm_kleurcode(_context);
            Podium      = new vm_podium(_context);
            Tent        = new vm_tent(_context);
            Tourmanager = new vm_begeleiding(_context)
            {
                BoekingId = Id, FunctieId = 1
            };
            ProductieManager = new vm_begeleiding(_context)
            {
                BoekingId = Id, FunctieId = 2
            };
            Catering               = new vm_catering(_context);
            CateringCommentaren    = new vm_commentaar(_context);
            Voorzieningen          = new vm_voorziening(_context);
            VoorzieningCommentaren = new vm_commentaar(_context);
        }
 public vm_boeking_productieeenheid(GmmDbContext pContext, BoekingProductieEenheid pProductieEenheid) : this(pContext)
 {
     _boekingProductieEenheid = pProductieEenheid;
 }
 public vm_commentaar(GmmDbContext pContext, Commentaar pCommentaar) : this(pContext)
 {
     _commentaar = pCommentaar;
 }
示例#18
0
 public vm_boeking_kleedkamer(GmmDbContext pContext, BoekingKleedkamer pBoekingKleedkamer) : this(pContext)
 {
     _boekingKleedkamer = pBoekingKleedkamer;
 }
 public vm_begeleiding(GmmDbContext pContext, Begeleiding pBegeleiding) : this(pContext)
 {
     _begeleiding = pBegeleiding;
 }