public ComicBookController(ICollectionDAL collectionDAL, IStatisticsDAL statisticsDAL, IComicDAL comicDAL, IUserDAL userDAL) { this.collectionDAL = collectionDAL; this.statisticsDAL = statisticsDAL; this.comicDAL = comicDAL; this.userDAL = userDAL; }
public AccountController(IAuthProvider authProvider, ICollectionDAL collectionDAL, IComicDAL comicDAL, IStatisticsDAL statisticsDAL) { this.authProvider = authProvider; this.collectionDAL = collectionDAL; this.comicDAL = comicDAL; this.statisticsDAL = statisticsDAL; }
public HomeController(ICollectionDAL collectionDAL, IStatisticsDAL statisticsDAL, IComicDAL comicDAL) { this.collectionDAL = collectionDAL; this.statisticsDAL = statisticsDAL; this.comicDAL = comicDAL; }
public CollectionService(ICollectionDAL CollectionDAL) { this.CollectionDAL = CollectionDAL; }