public AccountController(IBoekService bs)
 {
     this.bs = bs;
     flickr = MvcApplication.flickr;
     if (flickr == null) flickr = FlickrApiManager.GetInstance();
 
 }
Example #2
0
 public ActiviteitenController(IBoekService bs)
 {
     this.bs = bs;
     flickr  = MvcApplication.flickr;
     if (flickr == null)
     {
         flickr = FlickrApiManager.GetInstance();
     }
 }
        public MainWindow()
        {
            InitializeComponent();

            var genreChannelFactory = new ChannelFactory <IGenreService>(new BasicHttpBinding());

            _genreService = genreChannelFactory.CreateChannel(new EndpointAddress("http://localhost:8054/GenreService.svc"));

            var boekChannelFactory = new ChannelFactory <IBoekService>(new BasicHttpBinding());

            _boekService = boekChannelFactory.CreateChannel(new EndpointAddress("http://localhost:8054/BoekService.svc"));

            ToonBoeken();
            ToonGenres();
        }
 public AdminController(IBoekService bs)
 {
     this.bs = bs;
 }
 public HelpDeskController(IBoekService bs)
 {
     this.bs = bs;
 }
 public HelpDeskController(IBoekService bs)
 {
     this.bs = bs;
 }
Example #7
0
 public AdminController(IBoekService bs)
 {
     this.bs = bs;
 }