public HRController(ITAbsentRepository tAbsentRepository, IMEmployeeRepository mEmployeeRepository) { Check.Require(tAbsentRepository != null, "tAbsentRepository may not be null"); Check.Require(mEmployeeRepository != null, "mEmployeeRepository may not be null"); this._tAbsentRepository = tAbsentRepository; this._mEmployeeRepository = mEmployeeRepository; }
public TAbsentTasks(ITAbsentRepository TAbsentRepository) { this._TAbsentRepository = TAbsentRepository; }