Esempio n. 1
0
 public BankAccountRepository(IMapper mapper, IDbContextOptionsFactory optionsFactory)
 {
     _context = new GackoDbContext(optionsFactory.Get());
     _mapper  = mapper;
 }
Esempio n. 2
0
 public SubscriptionRepository(IMapper mapper, IDbContextOptionsFactory optionsFactory)
 {
     _context = new GackoDbContext(optionsFactory.Get());
     _mapper  = mapper;
 }
 public ExpenseCategoryRepository(IMapper mapper, IDbContextOptionsFactory optionsFactory)
 {
     _context = new GackoDbContext(optionsFactory.Get());
     _mapper  = mapper;
 }
Esempio n. 4
0
 public SalesDocumentRepository(IMapper mapper, IDbContextOptionsFactory optionsFactory)
 {
     _context = new GackoDbContext(optionsFactory.Get());
     _mapper  = mapper;
 }