Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
25 changes: 25 additions & 0 deletions Boluwatife/StageTwoTask/BankProject.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankProject", "BankProject\BankProject.csproj", "{16C39874-DEFF-4271-9CE0-336111B0F833}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{16C39874-DEFF-4271-9CE0-336111B0F833}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{16C39874-DEFF-4271-9CE0-336111B0F833}.Debug|Any CPU.Build.0 = Debug|Any CPU
{16C39874-DEFF-4271-9CE0-336111B0F833}.Release|Any CPU.ActiveCfg = Release|Any CPU
{16C39874-DEFF-4271-9CE0-336111B0F833}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {123C7F3B-1B1C-48B0-9654-68ABF2074ED3}
EndGlobalSection
EndGlobal
17 changes: 17 additions & 0 deletions Boluwatife/StageTwoTask/BankProject/AppServices/ITransaction.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using BankProject.Domain.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BankProject.AppServices
{
public interface ITransaction
{
void InsertTransaction(long _userBankAccountId, TransactionType _tranType, decimal _tranAmount, string _desc);
void ViewTransaction();


}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BankProject.AppServices
{
public interface IUserAccountActions
{
void CheckBalance();
void PlaceDeposit();
void MakeWithDrawal();

}
}
13 changes: 13 additions & 0 deletions Boluwatife/StageTwoTask/BankProject/AppServices/IUserLogin.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BankProject.AppServices
{
public interface IUserLogin
{
void CheckUserCardNumAndPassword();
}
}
Loading