Exemple #1
0
 public SettlementService(weGOPAYDbContext weGOPAYDbContext,
                          IUserServices userServices,
                          IWalletTransactionService walletTransactionService
                          )
 {
     _weGOPAYDbContext         = weGOPAYDbContext;
     _userService              = userServices;
     _walletTransactionService = walletTransactionService;
 }
Exemple #2
0
 public WalletServices(weGOPAYDbContext weGOPAYDbContext)
 {
     _weGOPAYDbContext = weGOPAYDbContext;
 }
Exemple #3
0
 public WalletTransactionService(IWalletServices walletServices, weGOPAYDbContext weGOPAYDbContext)
 {
     _weGOPAYDbContext = weGOPAYDbContext;
 }
Exemple #4
0
 public UserServices(weGOPAYDbContext weGOPAYDbContext)
 {
     _weGOPAYDbContext = weGOPAYDbContext;
 }