示例#1
0
 public AllowanceDetailsController(IAllowanceDetailRepository d, IEmployeeInfoRepository e, IAllowanceType f)
 {
     this.detailRepository       = d;
     this.employeeInfoRepository = e;
     this.allowanceRepository    = f;
 }
 public AllowanceTypesController(IAllowanceType i, IHttpContextAccessor e)
 {
     this.allowanceType       = i;
     this.httpContextAccessor = e;
 }
示例#3
0
 public AllowanceTypesController(IAllowanceType i)
 {
     this.allowanceType = i;
 }