public ProfileController(IUserServices userServices, ITweetServices tweetServices, IFollowServices followServices)
 {
     _userServices   = userServices;
     _tweetServices  = tweetServices;
     _followServices = followServices;
 }
 public AdministrationController(ITweetServices tweets)
 {
     this.tweets = tweets;
 }
 public HomePageController(ITweetServices tweetServices, IUserServices userServices)
 {
     _tweetServices = tweetServices;
     _userServices  = userServices;
 }
 public HomeController(ITagServices tagServices, ITweetServices tweetServices)
 {
     this.tagServices = tagServices;
     this.tweetServices = tweetServices;
 }