예제 #1
0
 public AllowanceDetailsController(IAllowanceDetailRepository d, IEmployeeInfoRepository e, IAllowanceType f)
 {
     this.detailRepository       = d;
     this.employeeInfoRepository = e;
     this.allowanceRepository    = f;
 }
예제 #2
0
 public OverTimesController(IOverTimeRepository oi, IEmployeeInfoRepository ie)
 {
     this.overTimeRepository     = oi;
     this.employeeInfoRepository = ie;
 }