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