Esempio n. 1
0
 public ChannelsController(IChannelAggregateService channelService,
                           ICrudRepository crudRepository, ITwitchService twitchService)
 {
     _channelService = channelService;
     _crudRepository = crudRepository;
     _twitchService  = twitchService;
 }
Esempio n. 2
0
 public DetailsModel(IChannelAggregateService channelAggregateService,
                     ICrudRepository repo)
 {
     _channelAggregateService = channelAggregateService;
     _repo = repo;
 }
Esempio n. 3
0
 public ChannelsController(IChannelAggregateService channelService,
                           ICrudRepository crudRepository)
 {
     _channelService = channelService;
     _crudRepository = crudRepository;
 }
Esempio n. 4
0
 public IndexModel(IChannelAggregateService channelAggregateService)
 {
     _channelAggregateService = channelAggregateService;
 }
Esempio n. 5
0
 public DeleteModel(ICrudRepository repo, IChannelAggregateService channelAggregateService)
 {
     _repo = repo;
     _channelAggregateService = channelAggregateService;
 }