Exemple #1
0
 public LoginController(IStakeHolderBLL stakeHolderBLL, ITakerBLL takerBLL, ILoginManager loginManager)
 {
     _stakeHolderBLL = stakeHolderBLL;
     _takerBLL       = takerBLL;
     _loginManager   = loginManager;
     _staffBLL       = new StaffBLL();
     _clientBLL      = new ClientBLL();
 }
Exemple #2
0
 public ReportRequestController(IJobBLL jobBLL, IStakeHolderBLL stakeHolderBLL, ITakerBLL takerBLL, IFileBLL fileBLL)
 {
     this._jobBLL    = jobBLL;
     _stakeHolderBLL = stakeHolderBLL;
     _takerBLL       = takerBLL;
     _fileBLL        = fileBLL;
     _clientBLL      = new ClientBLL();
     _staffBLL       = new StaffBLL();
 }
Exemple #3
0
 public StaffController()
 {
     _staffBLL = new StaffBLL();
 }
Exemple #4
0
 public StaffController(IStaffBLL staffBLL, IMapper mapper)
 {
     _staffBLL = staffBLL;
     _mapper   = mapper;
 }