コード例 #1
0
ファイル: HRController.cs プロジェクト: ryuki/YTech.IM.GSP
        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;
        }
コード例 #2
0
 public TAbsentTasks(ITAbsentRepository TAbsentRepository)
 {
     this._TAbsentRepository = TAbsentRepository;
 }