Exemplo n.º 1
0
 public UserController(ICachebaleUserRepository userRepository,
                       ICachebaleAssociationRepository associationRepository,
                       IMapper mapper)
 {
     _userRepository        = userRepository;
     _associationRepository = associationRepository;
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public DocTypeAssociationController(ICachebaleAssociationRepository associationRepository,
                                     ICachebaleUserRepository userRepository)
 {
     _associationRepository = associationRepository;
     _userRepository        = userRepository;
 }