commit f79f12c8114baa2b114485dc7fcd8db3e7f8deb4 Author: szabomarton Date: Fri May 24 09:13:49 2024 +0200 added TBank diff --git a/20240524/Bank_Teszt/.vs/Bank_Teszt/v16/.suo b/20240524/Bank_Teszt/.vs/Bank_Teszt/v16/.suo new file mode 100644 index 0000000..ea8264f Binary files /dev/null and b/20240524/Bank_Teszt/.vs/Bank_Teszt/v16/.suo differ diff --git a/20240524/Bank_Teszt/Bank_Teszt.sln b/20240524/Bank_Teszt/Bank_Teszt.sln new file mode 100644 index 0000000..2470ab1 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.34729.46 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bank_Teszt", "Bank_Teszt\Bank_Teszt.csproj", "{9CFC2F79-3220-4CCF-B87D-33CE6AC08787}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9CFC2F79-3220-4CCF-B87D-33CE6AC08787}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9CFC2F79-3220-4CCF-B87D-33CE6AC08787}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9CFC2F79-3220-4CCF-B87D-33CE6AC08787}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9CFC2F79-3220-4CCF-B87D-33CE6AC08787}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DEF07960-5F5E-40EA-8ED9-CF3B324B9643} + EndGlobalSection +EndGlobal diff --git a/20240524/Bank_Teszt/Bank_Teszt/App.config b/20240524/Bank_Teszt/Bank_Teszt/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/20240524/Bank_Teszt/Bank_Teszt/Bank_Teszt.csproj b/20240524/Bank_Teszt/Bank_Teszt/Bank_Teszt.csproj new file mode 100644 index 0000000..5099904 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/Bank_Teszt.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {9CFC2F79-3220-4CCF-B87D-33CE6AC08787} + Exe + Bank_Teszt + Bank_Teszt + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/20240524/Bank_Teszt/Bank_Teszt/Program.cs b/20240524/Bank_Teszt/Bank_Teszt/Program.cs new file mode 100644 index 0000000..02d55a5 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/Program.cs @@ -0,0 +1,97 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Text.RegularExpressions; + +namespace Bank_Teszt +{ + class Program + { + static void Main(string[] args) + { + TBank user = new TBank("Digi", "2005.10.28", "00000001-00000001-00000001", 1000000); + Console.ReadLine(); + } + } + + public class TBank + { + private string nev; + private string szulido; + private string szlaszam; + private int egyenleg; + + public TBank(string nev, string szulido, string szlaszam, int egyenleg) + { + this.nev = nev; + this.szulido = szulido; + if (EllSzla(szlaszam)) + { + this.szlaszam = szlaszam; + } + this.egyenleg = egyenleg; + } + + static string pattern = "^00000000"; + static string pattern2 = "........-{1}[0-9]{8}-{1}[0-9]{8}"; + Regex regex = new Regex(pattern); + Regex regex2 = new Regex(pattern2); + + public bool EllSzla(string szlaszam) + { + string[] szla_begin = szlaszam.Split('-'); + if (!regex.IsMatch(szla_begin[0])) + { + if (regex2.IsMatch(szlaszam)) + { + return true; + } + } + return false; + } + + public bool Penzkivet(string szlaszam, int osszeg) + { + if (this.egyenleg > osszeg && this.szlaszam == szlaszam) + { + egyenleg -= osszeg; + return true; + } + return false; + } + + public bool PenzJovair(TBank user, int osszeg) + { + if (true) + { + user.egyenleg += osszeg; + return true; + } + //return false; + } + + public bool Atutal(TBank kuldo, TBank kedvezmenyezett, int osszeg) + { + if (kuldo.egyenleg > osszeg) + { + kedvezmenyezett.PenzJovair(kedvezmenyezett, osszeg); + kuldo.egyenleg -= osszeg; + } + return false; + } + + public string getTulaj(string szlaszam) + { + return ""; + } + + public List asd = new List(); + public List getSzamlak(string nev) + { + + return asd; + } + } +} diff --git a/20240524/Bank_Teszt/Bank_Teszt/Properties/AssemblyInfo.cs b/20240524/Bank_Teszt/Bank_Teszt/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..318d055 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Bank_Teszt")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Bank_Teszt")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("9cfc2f79-3220-4ccf-b87d-33ce6ac08787")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.exe b/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.exe new file mode 100644 index 0000000..9a07630 Binary files /dev/null and b/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.exe differ diff --git a/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.exe.config b/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.pdb b/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.pdb new file mode 100644 index 0000000..c0e7df9 Binary files /dev/null and b/20240524/Bank_Teszt/Bank_Teszt/bin/Debug/Bank_Teszt.pdb differ diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.AssemblyReference.cache b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.AssemblyReference.cache differ diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.CoreCompileInputs.cache b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ee191d7 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7f4b213b428f4c013f19137338418ee1f5525793 diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.FileListAbsolute.txt b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5ad5254 --- /dev/null +++ b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\bin\Debug\Bank_Teszt.exe.config +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\bin\Debug\Bank_Teszt.exe +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\bin\Debug\Bank_Teszt.pdb +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\obj\Debug\Bank_Teszt.csproj.AssemblyReference.cache +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\obj\Debug\Bank_Teszt.csproj.CoreCompileInputs.cache +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\obj\Debug\Bank_Teszt.exe +C:\Users\szabomarton\Desktop\szoftteszt\20240524\Bank_Teszt\Bank_Teszt\obj\Debug\Bank_Teszt.pdb diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.exe b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.exe new file mode 100644 index 0000000..9a07630 Binary files /dev/null and b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.exe differ diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.pdb b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.pdb new file mode 100644 index 0000000..c0e7df9 Binary files /dev/null and b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/Bank_Teszt.pdb differ diff --git a/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..dccc1e2 Binary files /dev/null and b/20240524/Bank_Teszt/Bank_Teszt/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ