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