/// <summary>
 /// Initializes the controller with dependency injection.
 /// </summary>
 /// <param name="param">IExploreRepository implementation to use.</param>
 public ExploreController(IExploreRepository param)
 {
     repo = param;
 }
 public UserDesktopController(IUserDesktopRepository desktopRepository, IUserRepository userRepository, IExploreRepository exploreRepository)
 {
     this._desktopRepository = desktopRepository;
     this._userRepository    = userRepository;
     this._exploreRepository = exploreRepository;
 }
Exemplo n.º 3
0
 public ActuallController(IExploreRepository repository, IUserDesktopRepository desktopRepository, IUpdatingRepository updateRepository)
 {
     this._actuallRepository = repository;
     this._desktopRepository = desktopRepository;
     this._updateRepository  = updateRepository;
 }
Exemplo n.º 4
0
 public ExploreController(IExploreRepository repository)
 {
     this._exploreRepository = repository;
 }