commit 170391040dc5337aaa4c0ed4e50b758d6f3719de Author: Adam Kwiatkowski Date: Tue Oct 9 14:21:29 2018 +0200 init diff --git a/.vs/Payment_prototype/v15/.suo b/.vs/Payment_prototype/v15/.suo new file mode 100644 index 0000000..5d8740b Binary files /dev/null and b/.vs/Payment_prototype/v15/.suo differ diff --git a/.vs/Payment_prototype/v15/sqlite3/storage.ide b/.vs/Payment_prototype/v15/sqlite3/storage.ide new file mode 100644 index 0000000..34f9339 Binary files /dev/null and b/.vs/Payment_prototype/v15/sqlite3/storage.ide differ diff --git a/Payment_prototype.sln b/Payment_prototype.sln new file mode 100644 index 0000000..3ecf200 --- /dev/null +++ b/Payment_prototype.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26730.15 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Payment_prototype", "Payment_prototype\Payment_prototype.csproj", "{700228C3-32A2-47CC-B6C1-D6294827C87D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {700228C3-32A2-47CC-B6C1-D6294827C87D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {700228C3-32A2-47CC-B6C1-D6294827C87D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {700228C3-32A2-47CC-B6C1-D6294827C87D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {700228C3-32A2-47CC-B6C1-D6294827C87D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {73133A27-CEEE-49A1-B0C0-CCAA1C39E1B9} + EndGlobalSection +EndGlobal diff --git a/Payment_prototype/App.config b/Payment_prototype/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/Payment_prototype/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Payment_prototype/Form1.Designer.cs b/Payment_prototype/Form1.Designer.cs new file mode 100644 index 0000000..126b3bc --- /dev/null +++ b/Payment_prototype/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace Payment_prototype +{ + partial class Form1 + { + /// + /// Wymagana zmienna projektanta. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Wyczyść wszystkie używane zasoby. + /// + /// prawda, jeżeli zarządzane zasoby powinny zostać zlikwidowane; Fałsz w przeciwnym wypadku. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Kod generowany przez Projektanta formularzy systemu Windows + + /// + /// Wymagana metoda obsługi projektanta — nie należy modyfikować + /// zawartość tej metody z edytorem kodu. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Text = "Form1"; + } + + #endregion + } +} + diff --git a/Payment_prototype/Form1.cs b/Payment_prototype/Form1.cs new file mode 100644 index 0000000..2b28452 --- /dev/null +++ b/Payment_prototype/Form1.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Payment_prototype +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/Payment_prototype/Payment_prototype.csproj b/Payment_prototype/Payment_prototype.csproj new file mode 100644 index 0000000..5d75c20 --- /dev/null +++ b/Payment_prototype/Payment_prototype.csproj @@ -0,0 +1,79 @@ + + + + + Debug + AnyCPU + {700228C3-32A2-47CC-B6C1-D6294827C87D} + WinExe + Payment_prototype + Payment_prototype + v4.6.1 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/Payment_prototype/Program.cs b/Payment_prototype/Program.cs new file mode 100644 index 0000000..68309a7 --- /dev/null +++ b/Payment_prototype/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Payment_prototype +{ + static class Program + { + /// + /// Główny punkt wejścia dla aplikacji. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Payment_prototype/Properties/AssemblyInfo.cs b/Payment_prototype/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..71205bd --- /dev/null +++ b/Payment_prototype/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Ogólne informacje o zestawie są kontrolowane poprzez następujący +// zestaw atrybutów. Zmień wartości tych atrybutów, aby zmodyfikować informacje +// powiązane z zestawem. +[assembly: AssemblyTitle("Payment_prototype")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Payment_prototype")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Ustawienie elementu ComVisible na wartość false sprawia, że typy w tym zestawie są niewidoczne +// dla składników COM. Jeśli potrzebny jest dostęp do typu w tym zestawie z +// COM, ustaw wartość true dla atrybutu ComVisible tego typu. +[assembly: ComVisible(false)] + +// Następujący identyfikator GUID jest identyfikatorem biblioteki typów w przypadku udostępnienia tego projektu w modelu COM +[assembly: Guid("700228c3-32a2-47cc-b6c1-d6294827c87d")] + +// Informacje o wersji zestawu zawierają następujące cztery wartości: +// +// Wersja główna +// Wersja pomocnicza +// Numer kompilacji +// Rewizja +// +// Możesz określić wszystkie wartości lub użyć domyślnych numerów kompilacji i poprawki +// przy użyciu symbolu „*”, tak jak pokazano poniżej: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Payment_prototype/Properties/Resources.Designer.cs b/Payment_prototype/Properties/Resources.Designer.cs new file mode 100644 index 0000000..29caa1c --- /dev/null +++ b/Payment_prototype/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Ten kod został wygenerowany przez narzędzie. +// Wersja środowiska uruchomieniowego: 4.0.30319.42000 +// +// Modyfikacje tego pliku mogą spowodować niewłaściwe zachowanie i zostaną utracone +// w przypadku ponownego wygenerowania kodu. +// +//------------------------------------------------------------------------------ + +namespace Payment_prototype.Properties +{ + + + /// + /// Silnie typizowana klasa zasobów do wyszukiwania zlokalizowanych ciągów itd. + /// + // Ta klasa została automatycznie wygenerowana za pomocą klasy StronglyTypedResourceBuilder + // przez narzędzie, takie jak ResGen lub Visual Studio. + // Aby dodać lub usunąć element członkowski, edytuj plik ResX, a następnie ponownie uruchom narzędzie ResGen + // z opcją /str lub ponownie skompiluj projekt programu VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Zwraca buforowane wystąpienie składnika ResourceManager używane przez tę klasę. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Payment_prototype.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Przesłania właściwość CurrentUICulture bieżącego wątku dla wszystkich + /// przypadków przeszukiwania zasobów za pomocą tej silnie typizowanej klasy zasobów. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Payment_prototype/Properties/Resources.resx b/Payment_prototype/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Payment_prototype/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Payment_prototype/Properties/Settings.Designer.cs b/Payment_prototype/Properties/Settings.Designer.cs new file mode 100644 index 0000000..447f720 --- /dev/null +++ b/Payment_prototype/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Payment_prototype.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Payment_prototype/Properties/Settings.settings b/Payment_prototype/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Payment_prototype/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Payment_prototype/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Payment_prototype/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..7b7dacb Binary files /dev/null and b/Payment_prototype/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Payment_prototype/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Payment_prototype/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..94d8610 Binary files /dev/null and b/Payment_prototype/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Payment_prototype/obj/Debug/Payment_prototype.csproj.CoreCompileInputs.cache b/Payment_prototype/obj/Debug/Payment_prototype.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..05958bf --- /dev/null +++ b/Payment_prototype/obj/Debug/Payment_prototype.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e79c2a0570f8628366156910045ca4ae0af4b993 diff --git a/Payment_prototype/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/Payment_prototype/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/Payment_prototype/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/Payment_prototype/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/Payment_prototype/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/Payment_prototype/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29