Exemplo n.º 1
0
 public BranchController(IBranchRepo _branch)
 {
     branch = _branch;
 }
Exemplo n.º 2
0
 public BranchController(IBranchRepo branchRepo)
 {
     _branchRepo = branchRepo;
 }
Exemplo n.º 3
0
 public BranchesController(IBranchRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }