Ejemplo n.º 1
0
 public HomeListingController(IHomeListingRepository homeListingRepository)
 {
     this.homeListingRepository = homeListingRepository;
 }
 public HomeListingController(IHomeListingRepository homeListingRepository, IUserRepository userRepository)
 {
     this.homeListingRepository = homeListingRepository;
     this.userRepository        = userRepository;
 }