public ChatMessageController(ScrumApplicationContext context, UserManager <AppUser> userManager)
 {
     this.context     = context;
     this.userManager = userManager;
 }
Example #2
0
 public ProjectsController(ScrumApplicationContext context, UserManager <AppUser> userManager)
 {
     this.context     = context;
     this.userManager = userManager;
 }
 public InvitationService(ScrumApplicationContext context)
 {
     this.context = context;
 }
Example #4
0
 public AccountsController(UserManager <AppUser> userManager, RoleManager <IdentityRole> roleManager, ScrumApplicationContext context)
 {
     this.userManager = userManager;
     this.roleManager = roleManager;
     this.context     = context;
 }
Example #5
0
 public StoryService(ScrumApplicationContext context)
 {
     this.context = context;
 }
Example #6
0
 public BoardService(ScrumApplicationContext context)
 {
     this.context = context;
 }
Example #7
0
 public ProjectService(ScrumApplicationContext context)
 {
     this.context = context;
 }