Пример #1
0
 public DirtbagBLL(IMemoryCache memoryCache, DAL.IDirtbagDAL dirtbagDAL, DAL.ISubredditDAL subredditDAL, DAL.IYouTubeDAL youTubeDAL)
 {
     cache   = memoryCache;
     dirtbag = dirtbagDAL;
     subDAL  = subredditDAL;
     ytDAL   = youTubeDAL;
 }
Пример #2
0
 public BotBanBLL(DAL.IBotBanDAL botBanDAL, UserManager <ApplicationUser> userManager, Utilities.IAuthUtils authUtils, DAL.IYouTubeDAL youtubeDAL, RedditSharp.RefreshTokenWebAgentPool agentPool)
 {
     bbDAL            = botBanDAL;
     this.userManager = userManager;
     this.authUtils   = authUtils;
     ytDAL            = youtubeDAL;
     this.agentPool   = agentPool;
 }