Beispiel #1
0
 public ComicBookController(ICollectionDAL collectionDAL, IStatisticsDAL statisticsDAL, IComicDAL comicDAL, IUserDAL userDAL)
 {
     this.collectionDAL = collectionDAL;
     this.statisticsDAL = statisticsDAL;
     this.comicDAL      = comicDAL;
     this.userDAL       = userDAL;
 }
Beispiel #2
0
 public AccountController(IAuthProvider authProvider, ICollectionDAL collectionDAL, IComicDAL comicDAL, IStatisticsDAL statisticsDAL)
 {
     this.authProvider  = authProvider;
     this.collectionDAL = collectionDAL;
     this.comicDAL      = comicDAL;
     this.statisticsDAL = statisticsDAL;
 }
Beispiel #3
0
 public HomeController(ICollectionDAL collectionDAL, IStatisticsDAL statisticsDAL, IComicDAL comicDAL)
 {
     this.collectionDAL = collectionDAL;
     this.statisticsDAL = statisticsDAL;
     this.comicDAL      = comicDAL;
 }