Ejemplo n.º 1
0
 public AlbumController(IApplicationDbContext dbContext, IApplicationReadDbConnection readDbConnection, IApplicationWriteDbConnection writeDbConnection)
 {
     _dbContext         = dbContext;
     _readDbConnection  = readDbConnection;
     _writeDbConnection = writeDbConnection;
 }
Ejemplo n.º 2
0
 public ClienteRepository(IApplicationReadDbConnection readDbConnection, IApplicationDbContext context)
 {
     _readDbConnection = readDbConnection;
     _context          = context;
 }