Exemplo n.º 1
0
 public ShortenerController(ShortenerContext shortenerContext, IKeyGenerator keyGenerator)
 {
     _shortenerContext = shortenerContext;
     _keyGenerator     = keyGenerator;
 }
Exemplo n.º 2
0
 public RedirectEfRepository(ShortenerContext shortenerContext)
 {
     _shortenerContext = shortenerContext;
 }
Exemplo n.º 3
0
 public BaseRepository(ShortenerContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
Exemplo n.º 4
0
 public ShortcutEfRepository(ShortenerContext shortenerContext)
 {
     _shortenerContext = shortenerContext;
 }
Exemplo n.º 5
0
 public DataSeeder(ShortenerContext shortenerContext)
 {
     _shortenerContext = shortenerContext;
 }
Exemplo n.º 6
0
 public Shortener(ShortenerContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public ShortenerController(ShortenerContext context)
 {
     _context   = context;
     _shortener = new Shortener(context);
 }
Exemplo n.º 8
0
 public RedirectController(ShortenerContext context)
 {
     _context = context;
 }
Exemplo n.º 9
0
 public EntriesController(ShortenerContext context)
 {
     _context = context;
 }