public BankAccountRepository(IMapper mapper, IDbContextOptionsFactory optionsFactory)
 {
     _context = new GackoDbContext(optionsFactory.Get());
     _mapper  = mapper;
 }
 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;
 }
Beispiel #4
0
 public SalesDocumentRepository(IMapper mapper, IDbContextOptionsFactory optionsFactory)
 {
     _context = new GackoDbContext(optionsFactory.Get());
     _mapper  = mapper;
 }