Exemplo n.º 1
0
 public LinkController(ILinkRepo repo, IMapper mapper, IConfiguration configuration)
 {
     _repository = repo;
     _mapper     = mapper;
     _config     = configuration;
 }
Exemplo n.º 2
0
 public HomeController(ILinkRepo repository)
 {
     this.linkRepo = repository;
 }
Exemplo n.º 3
0
 public HomeController(ILinkRepo repo, UserManager <IdentityUser> userManager)
 {
     _linkRepo    = repo;
     _userManager = userManager;
 }
 public LinkApiController(ILinkRepo repository)
 {
     this.linkRepo = repository;
 }