Beispiel #1
0
 public BranchRepository(IBranchMapper branchMapper)
 {
     this.branchMapper = branchMapper;
 }
Beispiel #2
0
 public EmployeeRepository(IEmployeeMapper employeeMapper, IPositionMapper positionMapper, IBranchMapper branchMapper) : base()
 {
     this.employeeMapper = employeeMapper;
     this.positionMapper = positionMapper;
     this.branchMapper   = branchMapper;
 }