Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ScrollController" /> class.
 /// </summary>
 /// <param name="albumRepository">The album repository.</param>
 public ScrollController(IAlbumRepository albumRepository, IMomentoRepository momentoRepository)
 {
     _albumRepository = albumRepository;
     _momentoRepository = momentoRepository;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MediaController" /> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 public MediaController(IMomentoRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IndexController"/> class.
 /// </summary>
 /// <param name="processor">The processor.</param>
 public IndexController(IMomentoRepository repository )
 {
     _repository = repository;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MediaController" /> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 public MediaController(IMomentoRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ScrollController" /> class.
 /// </summary>
 /// <param name="albumRepository">The album repository.</param>
 public ScrollController(IAlbumRepository albumRepository, IMomentoRepository momentoRepository)
 {
     _albumRepository   = albumRepository;
     _momentoRepository = momentoRepository;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IndexController"/> class.
 /// </summary>
 /// <param name="processor">The processor.</param>
 public IndexController(IMomentoRepository repository)
 {
     _repository = repository;
 }