Example #1
0
 public ShoutsController(IShoutRepository shoutRepository,
                         IProfileRepository profileRepository,
                         IUserRepository userRepository)
 {
     this.shoutRepository   = shoutRepository;
     this.profileRepository = profileRepository;
     this.userRepository    = userRepository;
 }