public AccountController(IConfiguration configuration, IServiceProvider sp, ISeekersBL seekersBL, IEmployersBL employersBL)
 {
     this._configuration = configuration;
     this._sp            = sp;
     this._seekersBL     = seekersBL;
     this._employersBL   = employersBL;
 }
 public EmployersController(IEmployersBL employersBL)
 {
     this._employersBL = employersBL;
 }