Exemplo n.º 1
0
 public UserController(IUserPasswordDAL userPasswordDal, IStudentDAL studentDal, EmployerSqlDAL employerDal)
     : base(userPasswordDal)
 {
     this.userPasswordDal = userPasswordDal;
     this.studentDal      = studentDal;
     this.employerDal     = employerDal;
 }
Exemplo n.º 2
0
 public StaffController(IStaffDAL staffDal, IUserPasswordDAL userPasswordDal, IStudentDAL studentDal, IEmployerDAL employerDal)
     : base(userPasswordDal)
 {
     this.staffDal        = staffDal;
     this.userPasswordDal = userPasswordDal;
     this.studentDal      = studentDal;
     this.employerDal     = employerDal;
 }
 public StudentController(IStudentDAL studentDAL, IUserPasswordDAL userPasswordDAL)
 {
     this.studentDAL      = studentDAL;
     this.userPasswordDAL = userPasswordDAL;
 }
 public ProfileBuilderController(IUserPasswordDAL userDal)
 {
     this.userDal = userDal;
 }