Exemplo n.º 1
0
 public ToolBoxNotesController(UserManager <ApplicationUser> userManager, DAL.INoteTypesDAL noteTypesDAL, Utilities.IAuthUtils authUtils, RedditSharp.RefreshTokenWebAgentPool agentPool, BLL.IToolBoxNotesBLL tbNotesBLL)
 {
     this.userManager  = userManager;
     this.authUtils    = authUtils;
     this.agentPool    = agentPool;
     this.noteTypesDAL = noteTypesDAL;
     this.tbNotesBLL   = tbNotesBLL;
 }
Exemplo n.º 2
0
 //private Utilities.AuthUtils authUtils;
 public SubredditBLL(IMemoryCache memoryCache, DAL.ISubredditDAL subredditDAL, UserManager <ApplicationUser> userManager,
                     DAL.INoteTypesDAL noteTypesDAL, RoleManager <IdentityRole> roleManager, Utilities.IAuthUtils authUtils)
 {
     subDAL         = subredditDAL;
     cache          = memoryCache;
     ntDAL          = noteTypesDAL;
     _roleManager   = roleManager;
     this.authUtils = authUtils;
 }
Exemplo n.º 3
0
 public NoteTypesBLL(DAL.INoteTypesDAL noteTypesDAL, Signalr.ISnooNoteUpdates snooNoteUpdates)
 {
     this.noteTypesDAL = noteTypesDAL;
     snUpdates         = snooNoteUpdates;
 }
Exemplo n.º 4
0
 public NotesBLL(DAL.INotesDAL notesDAL, DAL.INoteTypesDAL noteTypesDAL)
 {
     this.notesDAL     = notesDAL;
     this.noteTypesDAL = noteTypesDAL;
 }