Example #1
0
 protected BaseController(IOuchernikData data, User userProfile)
     : this(data)
 {
     this.UserProfile = userProfile;
 }
Example #2
0
 public NewsController(IOuchernikData data, User userProfile)
     : base(data, userProfile)
 {
 }
Example #3
0
 protected BaseController(IOuchernikData data)
 {
     this.Data = data;
 }
Example #4
0
 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)
 {
 }
Example #8
0
 public HomeController(IOuchernikData data)
     : base(data)
 {
 }