예제 #1
0
 public AdminController(ISongsRepository songRepository, ITVMovieRepository movieRepository,
                        IAdminRepository adminrepo, IBestsellersRepository bestRepo, IUpdatingRepository updateRepository)
 {
     this._songRepository        = songRepository;
     this._movieRepository       = movieRepository;
     this._adminRepository       = adminrepo;
     this._bestSellersRepository = bestRepo;
     this._updateRepository      = updateRepository;
 }
예제 #2
0
 public UpdatingController(IUpdatingRepository updateRepository)
 {
     this._updateRepository = updateRepository;
 }
예제 #3
0
 public ActuallController(IExploreRepository repository, IUserDesktopRepository desktopRepository, IUpdatingRepository updateRepository)
 {
     this._actuallRepository = repository;
     this._desktopRepository = desktopRepository;
     this._updateRepository  = updateRepository;
 }