public UsersController(IImageContestSystemData data, User userProfile)
     : base(data, userProfile)
 {
 }
 public HomeController(IImageContestSystemData data)
     : base(data)
 {
 }
 protected BaseController(IImageContestSystemData data)
 {
     this.ContestData = data;
 }
 protected BaseController(IImageContestSystemData data, User userProfile)
     : this(data)
 {
     this.UserProfile = userProfile;
 }
        public AccountController(IImageContestSystemData data)
            : base(data)
        {

        }
 public NotificationsController(IImageContestSystemData data, User userProfile)
     : base(data, userProfile)
 {
 }
 public NotificationsController(IImageContestSystemData data)
     : base(data)
 {
 }
 protected AdminBaseController(IImageContestSystemData data, User userProfile)
     : base(data, userProfile)
 {
 }
 protected AdminBaseController(IImageContestSystemData data)
     : base(data)
 {
 }