protected BaseController(IOuchernikData data, User userProfile)
     : this(data)
 {
     this.UserProfile = userProfile;
 }
 public NewsController(IOuchernikData data, User userProfile)
     : base(data, userProfile)
 {
 }
 protected BaseController(IOuchernikData data)
 {
     this.Data = data;
 }
 public NewsController(IOuchernikData data)
     : base(data)
 {
 }
 public StaffController(IOuchernikData data)
     : base(data)
 {
 }
 public ResourcesController(IOuchernikData data, User userProfile)
     : base(data, userProfile)
 {
 }
 public ResourcesController(IOuchernikData data)
     : base(data)
 {
 }
 public HomeController(IOuchernikData data)
     : base(data)
 {
 }