public TodoTasksController(AuthenticationContex context)
 {
     _context = context;
 }
 public PeopleGoingController(AuthenticationContex context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
 public ShareEventsController(AuthenticationContex context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }