示例#1
0
 public ReservaQuery(IDbConnection connection, LibrarydDbContext dbContext, Compiler sqlKataCompiler)
 {
     this.connection      = connection;
     this._dbContext      = dbContext;
     this.sqlKataCompiler = sqlKataCompiler;
 }
示例#2
0
 public LibroRepository(IDbConnection connection, LibrarydDbContext dbContext, Compiler sqlKataCompiler)
 {
     this.connection      = connection;
     this._dbContext      = dbContext;
     this.sqlKataCompiler = sqlKataCompiler;
 }
示例#3
0
 public GenericsRepository(LibrarydDbContext dbContext)
 {
     _context = dbContext;
 }
示例#4
0
 public AlquilerRepository(LibrarydDbContext dbContext)
 {
     this._dbContext = dbContext;
 }