public ShortenerController(ShortenerContext shortenerContext, IKeyGenerator keyGenerator) { _shortenerContext = shortenerContext; _keyGenerator = keyGenerator; }
public RedirectEfRepository(ShortenerContext shortenerContext) { _shortenerContext = shortenerContext; }
public BaseRepository(ShortenerContext context) { this.context = context; this.dbSet = context.Set <TEntity>(); }
public ShortcutEfRepository(ShortenerContext shortenerContext) { _shortenerContext = shortenerContext; }
public DataSeeder(ShortenerContext shortenerContext) { _shortenerContext = shortenerContext; }
public Shortener(ShortenerContext context) { _context = context; }
public ShortenerController(ShortenerContext context) { _context = context; _shortener = new Shortener(context); }
public RedirectController(ShortenerContext context) { _context = context; }
public EntriesController(ShortenerContext context) { _context = context; }