Example #1
0
 public UsersController(IBangaloreUniversityDatabase data, User user)
     : base(data, user)
 {
     this.Database = data;
     this.CurrentUser = user;
 }
Example #2
0
 public CoursesController(IBangaloreUniversityDatabase data, User user)
     : base(data, user)
 {
 }
Example #3
0
 protected Controller(IBangaloreUniversityDatabase database, User user)
 {
     this.Database = database;
     this.CurrentUser = user;
 }
Example #4
0
 public Engine(IBangaloreUniversityDatabase database, IUserInterface userInterface)
 {
     this.UserInterface = userInterface;
     this.Database = database;
     this.User = null;
 }
 public CoursesController(IBangaloreUniversityDatabase data, User user)
 {
     this.Data = data;
     this.User = user;
 }