Exemplo n.º 1
0
 public UserRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 2
0
 public LanguageRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 3
0
 public GenreRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public PublisherRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 5
0
 public EFUnitOfWork(string connectionString)
 {
     dbContext = new LDBContext(connectionString);
 }
Exemplo n.º 6
0
 public LastIdRepository(LDBContext lDBContext)
 {
     this.lDBContext = lDBContext;
 }
Exemplo n.º 7
0
 public OrderRepositiry(LDBContext lDBContext)
 {
     this.lDBContext = lDBContext;
 }
Exemplo n.º 8
0
 public FileRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 9
0
 public BookRepository(LDBContext lDBContext)
 {
     this.lDBContext = lDBContext;
 }
Exemplo n.º 10
0
 public AuthorRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 11
0
 public BookRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 12
0
 public BookService(LDBContext lDBContext, IRepository <Book> bookRepository, IMapper mapper)
 {
     this.lDBContext     = lDBContext;
     this.bookRepository = bookRepository;
     this.mapper         = mapper;
 }
Exemplo n.º 13
0
 public FeedbackRepository(LDBContext dbContext)
 {
     this.dbContext = dbContext;
 }