public WalletController(IWalletService walletService, IAddMoneyService addMoneyService)
 {
     _walletService   = walletService;
     _addMoneyService = addMoneyService;
 }
Example #2
0
 public AdminController(IAddMoneyService addMoneyService, IAddProductService addProductService)
 {
     _addMoneyService   = addMoneyService;
     _addProductService = addProductService;
 }