public UserController(ICreatedEventRepository cRepo, IParticipationRepository pRepo)
 {
     ceRepository = cRepo;
     pRepository  = pRepo;
 }
 public NavigationMenuViewComponent(ICreatedEventRepository repo)
 {
     repository = repo;
 }
 public HomeController(ICreatedEventRepository repo, IParticipationRepository repo_p)
 {
     repository = repo;
     p_rope     = repo_p;
     // _userManager=userMgr;
 }