import 'package:get/get.dart'; import '../core/data/data_source_auth/remote_data_source/app_remote_data_source.dart'; import '../core/data/repositories/app_repositories.dart'; class DependencysInjections implements Bindings { @override void dependencies() { Get.put(AppRemoteDataSource()); Get.put(AppRepositoriesImpl(remoteDataSource: Get.find())); // Get.lazyPut(() => SendPaymentController()); // Get.lazyPut(() => FeedBackController()); // Get.lazyPut(() => TransactionHistoryController()); // Get.lazyPut(() => ForgetPasswordController()); // Get.lazyPut(() => BeneficiaryDetailsController()); // Get.lazyPut(() => FingerPrintController()); // Get.lazyPut(() => ChangePasswordController()); // Get.lazyPut(() => LoginController()); // Get.lazyPut(() => TermAndConditionsController()); // Get.lazyPut(() => ProfileSettingsController()); // Get.lazyPut(() => SendPaymentController()); // Get.lazyPut(() => LoanTransactionHistoryController()); // Get.lazyPut(() => LocaleController()); } }