Beispiel #1
0
 public RentAdController(IRentAdRepository repo, IUserRepository userRepo)
 {
     this.repo = repo;
     UserRepo  = userRepo;
 }
Beispiel #2
0
 public UserController(IUserRepository repo, IRentAdRepository rentRepo)
 {
     this.repo = repo;
     RentRepo  = rentRepo;
 }