public LinkManagementController( ILinkRedirectionRepository linkRedirectionRepository, IMemoryCache memoryCache) { this.memoryCache = memoryCache; this.linkRedirectionRepository = linkRedirectionRepository; }
public LinkController( IMemoryCache memoryCache, ILinkRedirectionRepository linkRedirectionRepository) { _memoryCache = memoryCache; _linkRedirectionRepository = linkRedirectionRepository; }
public LinkController( IMemoryCache memoryCache, ILinkRedirectionRepository linkRedirectionRepository, IClickLogRepository clickLogRepository, IHttpContextAccessor contextAccessor) { this.memoryCache = memoryCache; this.linkRedirectionRepository = linkRedirectionRepository; this.clickLogRepository = clickLogRepository; this.httpContextAccessor = contextAccessor; }
public LinkManagementController(ILinkRedirectionRepository linkRedirectionRepository) { _linkRedirectionRepository = linkRedirectionRepository; }