public HomeController(CW03Context context,
                       IFolderRepo folderRepo,
                       IBookmarkEntityRepo bookmarkEntityRepo)
 {
     db = context;
     this.folderRepo         = folderRepo;
     this.bookmarkEntityRepo = bookmarkEntityRepo;
 }
Example #2
0
 public GoogleApiController(CW03Context context,
                            IBookmarkEntityRepo bookmarkEntityRepo,
                            IFolderRepo folderRepo,
                            IItemLinkRepo itemLinkRepo,
                            IItemLocationRepo itemLocationRepo,
                            IItemTextfileRepo itemTextfileRepo)
 {
     _context = context;
     this.bookmarkEntityRepo = bookmarkEntityRepo;
     this.folderRepo         = folderRepo;
     this.itemLinkRepo       = itemLinkRepo;
     this.itemLocationRepo   = itemLocationRepo;
     this.itemTextfileRepo   = itemTextfileRepo;
 }