예제 #1
0
 public BrugerService(BrugerRepo repo, IRestClient client)
 {
     repository  = repo;
     this.client = client;
 }
예제 #2
0
 public FotoalbumController(FotoalbumRepo repo, BrugerRepo brugerRepo)
 {
     this.repo       = repo;
     this.brugerRepo = brugerRepo;
 }
예제 #3
0
 public UserController(IBrugerService bs, BrugerRepo repo)
 {
     brugerService = bs;
     brugerrepo    = repo;
 }
예제 #4
0
 public UserController(BrugerRepo repo)
 {
     this.repo = repo;
 }