Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/basic classes for each service #66

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
1553f7e
feat(backend): Implemented empty interfaces for sendMoney & checkBala…
Motouom Mar 6, 2024
a2f6395
feat(backend): Implemented empty interfaces for sendMoney & checkBala…
Motouom Mar 6, 2024
5f97730
feat(backend): Implemented empty interfaces for sendMoney & checkBala…
Motouom Mar 6, 2024
cb15be5
feat(backend): removed the all the methods that was found in all the…
Motouom Mar 6, 2024
630552f
feat: added implementation of the checkbalance interface
AssahBismarkabah Mar 6, 2024
7090de1
Added(SendMoneyImpl.java):Basic skeleteon for the implementation of t…
forkimenjeckayang Mar 6, 2024
aa90731
Merge pull request #2 from Motouom/remotes/origin/feature/Basic-class…
AssahBismarkabah Mar 6, 2024
f479f5d
Merge branch 'feature/Basic-classes-for-each-service-#64' of github.c…
forkimenjeckayang Mar 6, 2024
8417849
feat: added implementation of the checkbalance interface
AssahBismarkabah Mar 6, 2024
39ac247
Modified(SendMoneyImpl.java): Added the component and service spring …
forkimenjeckayang Mar 6, 2024
5fe98ff
Merge branch 'feature/Basic-classes-for-each-service-#64' of github.c…
forkimenjeckayang Mar 6, 2024
7862f1e
feat: added annotation ensure classes are recognized as Spring Beans
AssahBismarkabah Mar 6, 2024
75e752d
feat(backend): Implemented an empty interfaces for sendMoney & check…
Motouom Mar 6, 2024
ac5653c
feat(backend): Implemented empty interfaces for sendMoney & checkBala…
Motouom Mar 6, 2024
7f1c9e5
feat(backend): Implemented empty interfaces for sendMoney & checkBala…
Motouom Mar 6, 2024
e4dbcac
feat(backend): removed the all the methods that was found in all th…
Motouom Mar 6, 2024
15c3c91
Merge pull request #5 from Motouom/remotes/origin/feature/Basic-class…
AssahBismarkabah Mar 6, 2024
76be34f
Merge branch 'feature/Basic-classes-for-each-service-#64' of github.c…
forkimenjeckayang Mar 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.adorsys.gis.powerpay.powerpaybackend.services;

// creating basic interface class for check balance
public interface CheckBalance {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.adorsys.gis.powerpay.powerpaybackend.services;

public class CheckBalanceImpl implements CheckBalance {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

package com.adorsys.gis.powerpay.powerpaybackend.services;

// creating basic interface class for send money
public interface SendMoney {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.adorsys.gis.powerpay.powerpaybackend.services;

public class SendMoneyImpl implements SendMoney{

}
Loading