Beispiel #1
0
 public ShoutBoxService(IShoutboxMessageRepository shoutboxMessageRepository, ICountryRepository countryRepository,
                        IShoutboxChannelRepository shoutboxChannelRepository, IConfigurationRepository configurationRepository)
 {
     this.shoutboxMessageRepository = shoutboxMessageRepository;
     this.countryRepository         = countryRepository;
     this.shoutboxChannelRepository = shoutboxChannelRepository;
     this.configurationRepository   = configurationRepository;
 }
 public ShoutboxController(IShoutboxMessageRepository shoutboxMessageRepository, IPopupService popupService,
                           IShoutBoxService shoutBoxService, IShoutboxChannelRepository shoutboxChannelRepository)
     : base(popupService)
 {
     this.shoutboxMessageRepository = shoutboxMessageRepository;
     this.shoutBoxService           = shoutBoxService;
     this.shoutboxChannelRepository = shoutboxChannelRepository;
 }