public NotificationController(UserManager<ApplicationUser> userManager, TweetManager tweetManager, NotificationManager notificationManager) : base(userManager) { _tweetManager = tweetManager; _notificationManager = notificationManager; }
public UserController(UserManager<ApplicationUser> userManager, TweetManager tweetManager, UserRelationshipManager userRelationshipManager, NotificationManager notificationManager) : base(userManager) { _tweetManager = tweetManager; _userRelationshipManager = userRelationshipManager; _notificationManager = notificationManager; }
public TweetController(UserManager<ApplicationUser> userManager, TweetManager tweetManager, UserRelationshipManager userRelationshipManager, NotificationManager notificationManager, IHostingEnvironment environment) : base(userManager) { _tweetManager = tweetManager; _userRelationshipManager = userRelationshipManager; _notificationManager = notificationManager; _environment = environment; }
public ApiController(UserManager<ApplicationUser> userManager, TweetManager tweetManager) : base(userManager) { _tweetManager = tweetManager; }