Ejemplo n.º 1
0
        public IActionResult CreatProject()
        {
            string ProjetManagerId = User.FindFirst(ClaimTypes.NameIdentifier).Value;

            ViewBag.ProjectManager = ProjectManagerRep.GetProjectManager(ProjetManagerId);
            ViewBag.TeamLeaders    = TeamLeaderRep.GetTeamLeaders();
            ViewBag.Developers     = DeveloperRep.GetDevelopers();
            return(View());
        }
 public IActionResult ShowDevelopers()
 {
     return(View(DeveloperRep.GetDevelopers()));
 }