Ejemplo n.º 1
0
 public TicketsController(ApplicationDbContext context, UserManager <PSUser> userManager, IPSHistoriesService historiesService, IPSRolesService rolesService, IPSAccessService accessService)
 {
     _userManager      = userManager;
     _context          = context;
     _historiesService = historiesService;
     _rolesService     = rolesService;
     _accessService    = accessService;
 }
Ejemplo n.º 2
0
 public ProjectsController(ApplicationDbContext context, UserManager <PSUser> userManager, IPSAccessService accessService, IPSProjectService projectService, IPSRolesService rolesService, IPSProjectService PSProjectService)
 {
     _context          = context;
     _userManager      = userManager;
     _accessService    = accessService;
     _projectService   = projectService;
     _rolesService     = rolesService;
     _PSProjectService = PSProjectService;
 }