Esempio n. 1
0
 public ComicBookController(ICollectionDAL collectionDAL, IStatisticsDAL statisticsDAL, IComicDAL comicDAL, IUserDAL userDAL)
 {
     this.collectionDAL = collectionDAL;
     this.statisticsDAL = statisticsDAL;
     this.comicDAL      = comicDAL;
     this.userDAL       = userDAL;
 }
Esempio n. 2
0
 public AccountController(IAuthProvider authProvider, ICollectionDAL collectionDAL, IComicDAL comicDAL, IStatisticsDAL statisticsDAL)
 {
     this.authProvider  = authProvider;
     this.collectionDAL = collectionDAL;
     this.comicDAL      = comicDAL;
     this.statisticsDAL = statisticsDAL;
 }
Esempio n. 3
0
 public HomeController(ICollectionDAL collectionDAL, IStatisticsDAL statisticsDAL, IComicDAL comicDAL)
 {
     this.collectionDAL = collectionDAL;
     this.statisticsDAL = statisticsDAL;
     this.comicDAL      = comicDAL;
 }
Esempio n. 4
0
 public CollectionService(ICollectionDAL CollectionDAL)
 {
     this.CollectionDAL = CollectionDAL;
 }