示例#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;
 }
示例#3
0
 public UserController(IBrugerService bs, BrugerRepo repo)
 {
     brugerService = bs;
     brugerrepo    = repo;
 }
示例#4
0
 public UserController(BrugerRepo repo)
 {
     this.repo = repo;
 }