Example #1
0
 // CONSTRUCTOR
 public ProductVersieCyclusService(IProductVersieCyclusRepository _repository, ProductieBaseDataContext db, ICyclusMaakInstellingService _CyclusMaakInstellingenService, IProductVersieRepository _productVersieRepository)
 {
     repository = _repository;
     DB         = db;
     CyclusMaakInstellingenService = _CyclusMaakInstellingenService;
     productVersieRepository       = _productVersieRepository;
 }
Example #2
0
        // CONSTRUCTOR
        public ProductVersieService(
            IProductVersieRepository _repository,
            ProductieBaseDataContext db,
            IEigenschapService _eigenschapService)
        {
            repository = _repository;
            DB         = db;

            eigenschapService = _eigenschapService;
        }
 // CONSTRUCTOR
 public ProductEigenschapService(IProductEigenschapRepository _repository, ProductieBaseDataContext db, IProductVersieRepository _productVersieRepository)
 {
     repository = _repository;
     DB         = db;
     productVersieRepository = _productVersieRepository;
 }