Example #1
0
 public HomeController(
     IProjectService projectService, 
     ICollaboratorsService collaboratorsService,
     UserManager<IdentityUser> userManager,
     IHubContext<ProjectsHub> projectsHubContext) {
     _projectService       = projectService;
     _collaboratorsService = collaboratorsService;
     _userManager          = userManager;
     _projectsHubContext = projectsHubContext;
 }
Example #2
0
 public EditorService(
     IProjectService projectsService,
     ICollaboratorsService collaboratorsService,
     UserManager <IdentityUser> userManager,
     IDebuggingSessions debuggingSessions)
 {
     _projectsService      = projectsService;
     _userManager          = userManager;
     _debuggingSessions    = debuggingSessions;
     _collaboratorsService = collaboratorsService;
 }