public UsersController(IMbaRepository repository, IMapper mapper, LinkGenerator linkGenerator, UserManager <User> userManager)
 {
     this.repository    = repository;
     this.mapper        = mapper;
     this.linkGenerator = linkGenerator;
     this.userManager   = userManager;
 }
 public TokenController(IMbaRepository repository, IMapper mapper, IConfiguration config, SignInManager <User> signInManager)
 {
     this.config        = config;
     this.signInManager = signInManager;
     this.repository    = repository;
     this.mapper        = mapper;
 }
Example #3
0
 public TransactionService(IMbaRepository mbaRepository, IFService fService)
 {
     _mRepository = mRepository;
     fGateway     = fService;
 }
Example #4
0
 public EntriesController(IMbaRepository repository, IMapper mapper, LinkGenerator linkGenerator)
 {
     this.repository    = repository;
     this.mapper        = mapper;
     this.linkGenerator = linkGenerator;
 }