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