Beispiel #1
0
 public BranchController(IBranchRepo _branch)
 {
     branch = _branch;
 }
 public BranchController(IBranchRepo branchRepo)
 {
     _branchRepo = branchRepo;
 }
Beispiel #3
0
 public BranchesController(IBranchRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }