public ChildTreeRepository(CtrlMoneyContext context)
     : base(context)
 {
 }
Example #2
0
 public BankRepository(CtrlMoneyContext context)
     : base(context)
 {
 }
Example #3
0
 public UnitOfWork(CtrlMoneyContext dbContext)
 {
     _dbContext = dbContext;
 }
 public TransactionRepository(CtrlMoneyContext context)
     : base(context)
 {
 }
Example #5
0
 public AddressRepository(CtrlMoneyContext context)
     : base(context)
 {
 }
Example #6
0
 public GenericRepository(CtrlMoneyContext context)
 {
     _context = context;
 }
 public ParentTreeRepository(CtrlMoneyContext context)
     : base(context)
 {
 }