From a8873848498c3bf071b951957e0aaaa3d0c9aa77 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: payment --- payment/.vs/Payment/DesignTimeBuild/.dtbcache.v2 | Bin 0 -> 74199 bytes .../9fb6fd55-5dfa-41ba-91d5-4a7872dc10d0.vsidx | Bin 0 -> 40965 bytes payment/.vs/Payment/v17/.futdcache.v2 | Bin 0 -> 149 bytes payment/.vs/Payment/v17/.suo | Bin 0 -> 34816 bytes .../.vs/ProjectEvaluation/payment.metadata.v7.bin | Bin 0 -> 171395 bytes .../.vs/ProjectEvaluation/payment.projects.v7.bin | Bin 0 -> 689757 bytes payment/Payment.sln | 25 +++ payment/Payment/Payment.csproj | 9 + payment/Payment/Payment.csproj.user | 11 + payment/Payment/Program.cs | 23 +++ .../bin/Debug/netcoreapp3.1/Payment.deps.json | 23 +++ .../Payment/bin/Debug/netcoreapp3.1/Payment.dll | Bin 0 -> 15360 bytes .../Payment/bin/Debug/netcoreapp3.1/Payment.exe | Bin 0 -> 158208 bytes .../Payment/bin/Debug/netcoreapp3.1/Payment.pdb | Bin 0 -> 14356 bytes .../netcoreapp3.1/Payment.runtimeconfig.dev.json | 8 + .../Debug/netcoreapp3.1/Payment.runtimeconfig.json | 9 + payment/Payment/frmCustomer.Designer.cs | 143 +++++++++++++ payment/Payment/frmCustomer.cs | 102 ++++++++++ payment/Payment/frmCustomer.resx | 120 +++++++++++ payment/Payment/frmPayment.Designer.cs | 221 +++++++++++++++++++++ payment/Payment/frmPayment.cs | 120 +++++++++++ payment/Payment/frmPayment.resx | 120 +++++++++++ .../.NETCoreApp,Version=v3.1.AssemblyAttributes.cs | 4 + .../Debug/netcoreapp3.1/Payment.AssemblyInfo.cs | 23 +++ .../netcoreapp3.1/Payment.AssemblyInfoInputs.cache | 1 + ...yment.GeneratedMSBuildEditorConfig.editorconfig | 11 + .../obj/Debug/netcoreapp3.1/Payment.assets.cache | Bin 0 -> 151 bytes .../Payment.csproj.BuildWithSkipAnalyzers | 0 .../Payment.csproj.CoreCompileInputs.cache | 1 + .../Payment.csproj.FileListAbsolute.txt | 16 ++ .../Payment.csproj.GenerateResource.cache | Bin 0 -> 118 bytes .../Debug/netcoreapp3.1/Payment.designer.deps.json | 11 + .../Payment.designer.runtimeconfig.json | 16 ++ .../Payment/obj/Debug/netcoreapp3.1/Payment.dll | Bin 0 -> 15360 bytes .../netcoreapp3.1/Payment.frmCustomer.resources | Bin 0 -> 180 bytes .../netcoreapp3.1/Payment.frmPayment.resources | Bin 0 -> 180 bytes .../netcoreapp3.1/Payment.genruntimeconfig.cache | 1 + .../Payment/obj/Debug/netcoreapp3.1/Payment.pdb | Bin 0 -> 14356 bytes .../Payment/obj/Debug/netcoreapp3.1/apphost.exe | Bin 0 -> 158208 bytes .../Payment/obj/Payment.csproj.nuget.dgspec.json | 66 ++++++ payment/Payment/obj/Payment.csproj.nuget.g.props | 15 ++ payment/Payment/obj/Payment.csproj.nuget.g.targets | 2 + payment/Payment/obj/project.assets.json | 71 +++++++ payment/Payment/obj/project.nuget.cache | 8 + 44 files changed, 1180 insertions(+) create mode 100644 payment/.vs/Payment/DesignTimeBuild/.dtbcache.v2 create mode 100644 payment/.vs/Payment/FileContentIndex/9fb6fd55-5dfa-41ba-91d5-4a7872dc10d0.vsidx create mode 100644 payment/.vs/Payment/v17/.futdcache.v2 create mode 100644 payment/.vs/Payment/v17/.suo create mode 100644 payment/.vs/ProjectEvaluation/payment.metadata.v7.bin create mode 100644 payment/.vs/ProjectEvaluation/payment.projects.v7.bin create mode 100644 payment/Payment.sln create mode 100644 payment/Payment/Payment.csproj create mode 100644 payment/Payment/Payment.csproj.user create mode 100644 payment/Payment/Program.cs create mode 100644 payment/Payment/bin/Debug/netcoreapp3.1/Payment.deps.json create mode 100644 payment/Payment/bin/Debug/netcoreapp3.1/Payment.dll create mode 100644 payment/Payment/bin/Debug/netcoreapp3.1/Payment.exe create mode 100644 payment/Payment/bin/Debug/netcoreapp3.1/Payment.pdb create mode 100644 payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.dev.json create mode 100644 payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.json create mode 100644 payment/Payment/frmCustomer.Designer.cs create mode 100644 payment/Payment/frmCustomer.cs create mode 100644 payment/Payment/frmCustomer.resx create mode 100644 payment/Payment/frmPayment.Designer.cs create mode 100644 payment/Payment/frmPayment.cs create mode 100644 payment/Payment/frmPayment.resx create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfo.cs create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfoInputs.cache create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.assets.cache create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.BuildWithSkipAnalyzers create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.CoreCompileInputs.cache create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.FileListAbsolute.txt create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.GenerateResource.cache create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.deps.json create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.runtimeconfig.json create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.dll create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmCustomer.resources create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmPayment.resources create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.genruntimeconfig.cache create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/Payment.pdb create mode 100644 payment/Payment/obj/Debug/netcoreapp3.1/apphost.exe create mode 100644 payment/Payment/obj/Payment.csproj.nuget.dgspec.json create mode 100644 payment/Payment/obj/Payment.csproj.nuget.g.props create mode 100644 payment/Payment/obj/Payment.csproj.nuget.g.targets create mode 100644 payment/Payment/obj/project.assets.json create mode 100644 payment/Payment/obj/project.nuget.cache diff --git a/payment/.vs/Payment/DesignTimeBuild/.dtbcache.v2 b/payment/.vs/Payment/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..cc68be1 Binary files /dev/null and b/payment/.vs/Payment/DesignTimeBuild/.dtbcache.v2 differ diff --git a/payment/.vs/Payment/FileContentIndex/9fb6fd55-5dfa-41ba-91d5-4a7872dc10d0.vsidx b/payment/.vs/Payment/FileContentIndex/9fb6fd55-5dfa-41ba-91d5-4a7872dc10d0.vsidx new file mode 100644 index 0000000..508db48 Binary files /dev/null and b/payment/.vs/Payment/FileContentIndex/9fb6fd55-5dfa-41ba-91d5-4a7872dc10d0.vsidx differ diff --git a/payment/.vs/Payment/v17/.futdcache.v2 b/payment/.vs/Payment/v17/.futdcache.v2 new file mode 100644 index 0000000..a86b8c0 Binary files /dev/null and b/payment/.vs/Payment/v17/.futdcache.v2 differ diff --git a/payment/.vs/Payment/v17/.suo b/payment/.vs/Payment/v17/.suo new file mode 100644 index 0000000..2540cf9 Binary files /dev/null and b/payment/.vs/Payment/v17/.suo differ diff --git a/payment/.vs/ProjectEvaluation/payment.metadata.v7.bin b/payment/.vs/ProjectEvaluation/payment.metadata.v7.bin new file mode 100644 index 0000000..869932d Binary files /dev/null and b/payment/.vs/ProjectEvaluation/payment.metadata.v7.bin differ diff --git a/payment/.vs/ProjectEvaluation/payment.projects.v7.bin b/payment/.vs/ProjectEvaluation/payment.projects.v7.bin new file mode 100644 index 0000000..394080e Binary files /dev/null and b/payment/.vs/ProjectEvaluation/payment.projects.v7.bin differ diff --git a/payment/Payment.sln b/payment/Payment.sln new file mode 100644 index 0000000..63d6c28 --- /dev/null +++ b/payment/Payment.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30413.136 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Payment", "Payment\Payment.csproj", "{A859E276-79B2-4CE1-9F7A-C5E741CF8F90}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A859E276-79B2-4CE1-9F7A-C5E741CF8F90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A859E276-79B2-4CE1-9F7A-C5E741CF8F90}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A859E276-79B2-4CE1-9F7A-C5E741CF8F90}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A859E276-79B2-4CE1-9F7A-C5E741CF8F90}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5A039AE9-22A4-4595-96DB-3373F193A6B4} + EndGlobalSection +EndGlobal diff --git a/payment/Payment/Payment.csproj b/payment/Payment/Payment.csproj new file mode 100644 index 0000000..7b05c62 --- /dev/null +++ b/payment/Payment/Payment.csproj @@ -0,0 +1,9 @@ + + + + WinExe + netcoreapp3.1 + true + + + \ No newline at end of file diff --git a/payment/Payment/Payment.csproj.user b/payment/Payment/Payment.csproj.user new file mode 100644 index 0000000..82c4f70 --- /dev/null +++ b/payment/Payment/Payment.csproj.user @@ -0,0 +1,11 @@ + + + + + Form + + + Form + + + \ No newline at end of file diff --git a/payment/Payment/Program.cs b/payment/Payment/Program.cs new file mode 100644 index 0000000..7b3043c --- /dev/null +++ b/payment/Payment/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Payment +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmCustomer()); + } + } +} diff --git a/payment/Payment/bin/Debug/netcoreapp3.1/Payment.deps.json b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.deps.json new file mode 100644 index 0000000..00c4d4d --- /dev/null +++ b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Payment/1.0.0": { + "runtime": { + "Payment.dll": {} + } + } + } + }, + "libraries": { + "Payment/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/payment/Payment/bin/Debug/netcoreapp3.1/Payment.dll b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.dll new file mode 100644 index 0000000..1dd4df3 Binary files /dev/null and b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.dll differ diff --git a/payment/Payment/bin/Debug/netcoreapp3.1/Payment.exe b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.exe new file mode 100644 index 0000000..a4169e4 Binary files /dev/null and b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.exe differ diff --git a/payment/Payment/bin/Debug/netcoreapp3.1/Payment.pdb b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.pdb new file mode 100644 index 0000000..b7bd900 Binary files /dev/null and b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.pdb differ diff --git a/payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.dev.json b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.dev.json new file mode 100644 index 0000000..214bf78 --- /dev/null +++ b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\User\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\User\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.json b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.json new file mode 100644 index 0000000..9b3a644 --- /dev/null +++ b/payment/Payment/bin/Debug/netcoreapp3.1/Payment.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/payment/Payment/frmCustomer.Designer.cs b/payment/Payment/frmCustomer.Designer.cs new file mode 100644 index 0000000..1effbc0 --- /dev/null +++ b/payment/Payment/frmCustomer.Designer.cs @@ -0,0 +1,143 @@ +namespace Payment +{ + partial class frmCustomer + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + btnExit = new System.Windows.Forms.Button(); + btnSave = new System.Windows.Forms.Button(); + lblPayment = new System.Windows.Forms.Label(); + btnSelectPayment = new System.Windows.Forms.Button(); + label2 = new System.Windows.Forms.Label(); + label1 = new System.Windows.Forms.Label(); + cboNames = new System.Windows.Forms.ComboBox(); + SuspendLayout(); + // + // btnExit + // + btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel; + btnExit.Location = new System.Drawing.Point(294, 209); + btnExit.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); + btnExit.Name = "btnExit"; + btnExit.Size = new System.Drawing.Size(88, 27); + btnExit.TabIndex = 21; + btnExit.Text = "E&xit"; + btnExit.Click += btnExit_Click; + // + // btnSave + // + btnSave.Location = new System.Drawing.Point(191, 209); + btnSave.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); + btnSave.Name = "btnSave"; + btnSave.Size = new System.Drawing.Size(88, 27); + btnSave.TabIndex = 20; + btnSave.Text = "&Save"; + btnSave.Click += btnSave_Click; + // + // lblPayment + // + lblPayment.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + lblPayment.Location = new System.Drawing.Point(14, 89); + lblPayment.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + lblPayment.Name = "lblPayment"; + lblPayment.Size = new System.Drawing.Size(233, 92); + lblPayment.TabIndex = 19; + lblPayment.TextChanged += lblPayment_TextChanged; + // + // btnSelectPayment + // + btnSelectPayment.Location = new System.Drawing.Point(266, 89); + btnSelectPayment.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); + btnSelectPayment.Name = "btnSelectPayment"; + btnSelectPayment.Size = new System.Drawing.Size(121, 27); + btnSelectPayment.TabIndex = 18; + btnSelectPayment.Text = "Select Payment"; + btnSelectPayment.Click += btnSelectPayment_Click; + // + // label2 + // + label2.Location = new System.Drawing.Point(14, 61); + label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label2.Name = "label2"; + label2.Size = new System.Drawing.Size(117, 27); + label2.TabIndex = 17; + label2.Text = "Payment method:"; + // + // label1 + // + label1.Location = new System.Drawing.Point(14, 15); + label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label1.Name = "label1"; + label1.Size = new System.Drawing.Size(117, 27); + label1.TabIndex = 16; + label1.Text = "Customer name:"; + // + // cboNames + // + cboNames.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + cboNames.FormattingEnabled = true; + cboNames.Location = new System.Drawing.Point(154, 15); + cboNames.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); + cboNames.Name = "cboNames"; + cboNames.Size = new System.Drawing.Size(233, 23); + cboNames.TabIndex = 15; + cboNames.SelectedIndexChanged += cboNames_SelectedIndexChanged; + // + // frmCustomer + // + AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + CancelButton = btnExit; + ClientSize = new System.Drawing.Size(406, 252); + Controls.Add(btnExit); + Controls.Add(btnSave); + Controls.Add(lblPayment); + Controls.Add(btnSelectPayment); + Controls.Add(label2); + Controls.Add(label1); + Controls.Add(cboNames); + Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); + Name = "frmCustomer"; + StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + Text = "Customer"; + FormClosing += frmCustomer_FormClosing; + Load += frmCustomer_Load; + ResumeLayout(false); + } + + #endregion + + private System.Windows.Forms.Button btnExit; + private System.Windows.Forms.Button btnSave; + private System.Windows.Forms.Label lblPayment; + private System.Windows.Forms.Button btnSelectPayment; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.ComboBox cboNames; + } +} + diff --git a/payment/Payment/frmCustomer.cs b/payment/Payment/frmCustomer.cs new file mode 100644 index 0000000..eb57959 --- /dev/null +++ b/payment/Payment/frmCustomer.cs @@ -0,0 +1,102 @@ +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 +{ + public partial class frmCustomer : Form + { + public frmCustomer() + { + InitializeComponent(); + } + + bool isDataSaved = true; + + private void frmCustomer_Load(object sender, EventArgs e) + { + cboNames.Items.Add("Mike Smith"); + cboNames.Items.Add("Nancy Jones"); + } + + private void frmCustomer_FormClosing(object sender, FormClosingEventArgs e) + { + if (isDataSaved == false) { + string msg = "This form contains unsaved data" + + "\n\nDo you want to save it?"; + + DialogResult button = + MessageBox.Show(msg, "Customer", + MessageBoxButtons.YesNoCancel, + MessageBoxIcon.Warning); + + if (button == DialogResult.Yes) + if (IsValidData()) + this.SaveData(); + else + e.Cancel = true; + if (button == DialogResult.Cancel) + e.Cancel = true; + } + } + + private void btnSelectPayment_Click(object sender, EventArgs e) + { + Form payment = new frmPayment(); + DialogResult selectedButton = payment.ShowDialog(); + if (selectedButton == DialogResult.OK) + lblPayment.Text = (string)payment.Tag; + } + + private void btnSave_Click(object sender, EventArgs e) + { + if (IsValidData()) + SaveData(); + } + + private void btnExit_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void lblPayment_TextChanged(object sender, EventArgs e) + { + isDataSaved = false; + } + + private void cboNames_SelectedIndexChanged(object sender, EventArgs e) + { + isDataSaved = false; + lblPayment.Text = ""; + } + + private void SaveData() + { + cboNames.SelectedIndex = -1; + lblPayment.Text = ""; + isDataSaved = true; + cboNames.Focus(); + } + + private bool IsValidData() + { + if (cboNames.SelectedIndex == -1) { + MessageBox.Show("You must select a customer", + "Entry Error"); + return false; + } + if (lblPayment.Text == "") { + MessageBox.Show("You must enter a payment", + "Entry Error"); + return false; + } + return true; + } + } +} diff --git a/payment/Payment/frmCustomer.resx b/payment/Payment/frmCustomer.resx new file mode 100644 index 0000000..b92c163 --- /dev/null +++ b/payment/Payment/frmCustomer.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/payment/Payment/frmPayment.Designer.cs b/payment/Payment/frmPayment.Designer.cs new file mode 100644 index 0000000..00de168 --- /dev/null +++ b/payment/Payment/frmPayment.Designer.cs @@ -0,0 +1,221 @@ +namespace Payment +{ + partial class frmPayment + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + boxBilling = new System.Windows.Forms.GroupBox(); + rdoBill = new System.Windows.Forms.RadioButton(); + rdoCreditCard = new System.Windows.Forms.RadioButton(); + lblCard = new System.Windows.Forms.Label(); + lstCreditCardType = new System.Windows.Forms.ListBox(); + lblNum = new System.Windows.Forms.Label(); + txtNum = new System.Windows.Forms.TextBox(); + lblExpire = new System.Windows.Forms.Label(); + cboExpirationMonth = new System.Windows.Forms.ComboBox(); + cboExpirationYear = new System.Windows.Forms.ComboBox(); + chkDefault = new System.Windows.Forms.CheckBox(); + btnOK = new System.Windows.Forms.Button(); + btnCancel = new System.Windows.Forms.Button(); + boxBilling.SuspendLayout(); + SuspendLayout(); + // + // boxBilling + // + boxBilling.Controls.Add(rdoBill); + boxBilling.Controls.Add(rdoCreditCard); + boxBilling.Location = new System.Drawing.Point(17, 12); + boxBilling.Name = "boxBilling"; + boxBilling.Size = new System.Drawing.Size(320, 58); + boxBilling.TabIndex = 0; + boxBilling.TabStop = false; + boxBilling.Text = "Billing"; + // + // rdoBill + // + rdoBill.AutoSize = true; + rdoBill.Location = new System.Drawing.Point(189, 22); + rdoBill.Name = "rdoBill"; + rdoBill.Size = new System.Drawing.Size(94, 19); + rdoBill.TabIndex = 1; + rdoBill.Text = "Bill customer"; + rdoBill.UseVisualStyleBackColor = true; + rdoBill.CheckedChanged += Billing_CheckedChanged; + // + // rdoCreditCard + // + rdoCreditCard.AutoSize = true; + rdoCreditCard.Checked = true; + rdoCreditCard.Location = new System.Drawing.Point(33, 22); + rdoCreditCard.Name = "rdoCreditCard"; + rdoCreditCard.Size = new System.Drawing.Size(83, 19); + rdoCreditCard.TabIndex = 0; + rdoCreditCard.TabStop = true; + rdoCreditCard.Text = "Credit card"; + rdoCreditCard.UseVisualStyleBackColor = true; + rdoCreditCard.CheckedChanged += Billing_CheckedChanged; + // + // lblCard + // + lblCard.AutoSize = true; + lblCard.Location = new System.Drawing.Point(8, 86); + lblCard.Name = "lblCard"; + lblCard.Size = new System.Drawing.Size(94, 15); + lblCard.TabIndex = 1; + lblCard.Text = "Credit card type:"; + // + // lstCreditCardType + // + lstCreditCardType.FormattingEnabled = true; + lstCreditCardType.ItemHeight = 15; + lstCreditCardType.Location = new System.Drawing.Point(105, 86); + lstCreditCardType.Name = "lstCreditCardType"; + lstCreditCardType.Size = new System.Drawing.Size(238, 79); + lstCreditCardType.TabIndex = 2; + // + // lblNum + // + lblNum.AutoSize = true; + lblNum.Location = new System.Drawing.Point(8, 174); + lblNum.Name = "lblNum"; + lblNum.Size = new System.Drawing.Size(80, 15); + lblNum.TabIndex = 3; + lblNum.Text = "Card number:"; + // + // txtNum + // + txtNum.Location = new System.Drawing.Point(105, 174); + txtNum.Name = "txtNum"; + txtNum.Size = new System.Drawing.Size(238, 23); + txtNum.TabIndex = 4; + // + // lblExpire + // + lblExpire.AutoSize = true; + lblExpire.Location = new System.Drawing.Point(8, 213); + lblExpire.Name = "lblExpire"; + lblExpire.Size = new System.Drawing.Size(88, 15); + lblExpire.TabIndex = 5; + lblExpire.Text = "Expiration date:"; + // + // cboExpirationMonth + // + cboExpirationMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + cboExpirationMonth.FormattingEnabled = true; + cboExpirationMonth.Location = new System.Drawing.Point(105, 213); + cboExpirationMonth.Name = "cboExpirationMonth"; + cboExpirationMonth.Size = new System.Drawing.Size(116, 23); + cboExpirationMonth.TabIndex = 6; + // + // cboExpirationYear + // + cboExpirationYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + cboExpirationYear.FormattingEnabled = true; + cboExpirationYear.Location = new System.Drawing.Point(227, 213); + cboExpirationYear.Name = "cboExpirationYear"; + cboExpirationYear.Size = new System.Drawing.Size(116, 23); + cboExpirationYear.TabIndex = 7; + // + // chkDefault + // + chkDefault.AutoSize = true; + chkDefault.Checked = true; + chkDefault.CheckState = System.Windows.Forms.CheckState.Checked; + chkDefault.Location = new System.Drawing.Point(14, 252); + chkDefault.Name = "chkDefault"; + chkDefault.Size = new System.Drawing.Size(177, 19); + chkDefault.TabIndex = 8; + chkDefault.Text = "Set as default billing method"; + chkDefault.UseVisualStyleBackColor = true; + // + // btnOK + // + btnOK.Location = new System.Drawing.Point(177, 286); + btnOK.Name = "btnOK"; + btnOK.Size = new System.Drawing.Size(75, 23); + btnOK.TabIndex = 9; + btnOK.Text = "OK"; + btnOK.UseVisualStyleBackColor = true; + btnOK.Click += btnOK_Click; + // + // btnCancel + // + btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + btnCancel.Location = new System.Drawing.Point(259, 286); + btnCancel.Name = "btnCancel"; + btnCancel.Size = new System.Drawing.Size(75, 23); + btnCancel.TabIndex = 10; + btnCancel.Text = "Cancel"; + btnCancel.UseVisualStyleBackColor = true; + // + // frmPayment + // + AcceptButton = btnOK; + AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + CancelButton = btnCancel; + ClientSize = new System.Drawing.Size(354, 321); + ControlBox = false; + Controls.Add(btnCancel); + Controls.Add(btnOK); + Controls.Add(chkDefault); + Controls.Add(cboExpirationYear); + Controls.Add(cboExpirationMonth); + Controls.Add(lblExpire); + Controls.Add(txtNum); + Controls.Add(lblNum); + Controls.Add(lstCreditCardType); + Controls.Add(lblCard); + Controls.Add(boxBilling); + FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + MaximizeBox = false; + Name = "frmPayment"; + StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + Text = "Payment"; + Load += frmPayment_Load; + boxBilling.ResumeLayout(false); + boxBilling.PerformLayout(); + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private System.Windows.Forms.GroupBox boxBilling; + private System.Windows.Forms.RadioButton rdoBill; + private System.Windows.Forms.RadioButton rdoCreditCard; + private System.Windows.Forms.Label lblCard; + private System.Windows.Forms.ListBox lstCreditCardType; + private System.Windows.Forms.Label lblNum; + private System.Windows.Forms.TextBox txtNum; + private System.Windows.Forms.Label lblExpire; + private System.Windows.Forms.ComboBox cboExpirationMonth; + private System.Windows.Forms.ComboBox cboExpirationYear; + private System.Windows.Forms.CheckBox chkDefault; + private System.Windows.Forms.Button btnOK; + private System.Windows.Forms.Button btnCancel; + } +} \ No newline at end of file diff --git a/payment/Payment/frmPayment.cs b/payment/Payment/frmPayment.cs new file mode 100644 index 0000000..21a1b70 --- /dev/null +++ b/payment/Payment/frmPayment.cs @@ -0,0 +1,120 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace Payment +{ + public partial class frmPayment : Form + { + public frmPayment() + { + InitializeComponent(); + } + + private void frmPayment_Load(object sender, EventArgs e) + { + lstCreditCardType.Items.Add("Visa"); + lstCreditCardType.Items.Add("Mastercard"); + lstCreditCardType.Items.Add("American Express"); + lstCreditCardType.SelectedIndex = 0; + + string[] months = {"Select a month...", + "January", "February", "March", + "April", "May", "June", + "July", "August", "September", + "October", "November", "December"}; + foreach (string month in months) + cboExpirationMonth.Items.Add(month); + cboExpirationMonth.SelectedIndex = 0; + + int year = DateTime.Today.Year; + int endYear = year+8; + cboExpirationYear.Items.Add("Select a year..."); + while (year < endYear) { + cboExpirationYear.Items.Add(year); + ++year; + } + cboExpirationYear.SelectedIndex = 0; + } + + private void btnOK_Click(object sender, EventArgs e) + { + if (IsValidData()) + this.SaveData(); + } + + private void Billing_CheckedChanged(object sender, EventArgs e) + { + if (rdoCreditCard.Checked) + EnableControls(); + else + DisableControls(); + } + + private void EnableControls() + { + lstCreditCardType.Enabled = true; + txtNum.Enabled = true; + cboExpirationMonth.Enabled = true; + cboExpirationYear.Enabled = true; + } + + private void DisableControls() + { + lstCreditCardType.Enabled = false; + txtNum.Enabled = false; + cboExpirationMonth.Enabled = false; + cboExpirationYear.Enabled = false; + } + + private bool IsValidData() + { + if (rdoCreditCard.Checked) { + if (lstCreditCardType.SelectedIndex == -1) { + MessageBox.Show("You must select a credit card type", + "Entry Error"); + lstCreditCardType.Focus(); + return false; + } + if (txtNum.Text == "") { + MessageBox.Show("You must enter a credit card number", + "Entry Error"); + txtNum.Focus(); + return false; + } + if (cboExpirationMonth.SelectedIndex == 0) { + MessageBox.Show("You must select a month", "Entry Error"); + cboExpirationMonth.Focus(); + return false; + } + if (cboExpirationYear.SelectedIndex == 0) { + MessageBox.Show("You must select a year", "Entry Error"); + cboExpirationYear.Focus(); + return false; + } + } + return true; + } + + private void SaveData() + { + string msg = null; + if (rdoCreditCard.Checked) + msg = "Charge to credit card" + + "\n\nCard type: " + lstCreditCardType.Text + + "\nCard number: " + txtNum.Text + + "\nExpiration date: " + cboExpirationMonth.Text + + "/" + cboExpirationYear.Text + "\n"; + else + msg = "Send bill to customer" + "\n\n"; + msg += "Default billing: " + (bool)chkDefault.Checked; + + this.Tag = msg; + this.DialogResult = DialogResult.OK; + } + } +} diff --git a/payment/Payment/frmPayment.resx b/payment/Payment/frmPayment.resx new file mode 100644 index 0000000..b92c163 --- /dev/null +++ b/payment/Payment/frmPayment.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/payment/Payment/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..3364fdf --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")] diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfo.cs b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfo.cs new file mode 100644 index 0000000..f49f8d5 --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Payment")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Payment")] +[assembly: System.Reflection.AssemblyTitleAttribute("Payment")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfoInputs.cache b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e0c0644 --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +1e3ee67fac03031cd8b196de0a8b390572ae5dc033749e8ff7a508e7ba157be5 diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.GeneratedMSBuildEditorConfig.editorconfig b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7a91564 --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = Payment +build_property.ProjectDir = C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.assets.cache b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.assets.cache new file mode 100644 index 0000000..e317cfd Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.assets.cache differ diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.BuildWithSkipAnalyzers b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.CoreCompileInputs.cache b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b985ddf --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ee20666ace94adf399bbb90e0e52b7804f48dcd9f757e3e003166527b3a34db8 diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.FileListAbsolute.txt b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..30aeadd --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\bin\Debug\netcoreapp3.1\Payment.exe +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\bin\Debug\netcoreapp3.1\Payment.deps.json +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\bin\Debug\netcoreapp3.1\Payment.runtimeconfig.json +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\bin\Debug\netcoreapp3.1\Payment.runtimeconfig.dev.json +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\bin\Debug\netcoreapp3.1\Payment.dll +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\bin\Debug\netcoreapp3.1\Payment.pdb +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.frmCustomer.resources +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.frmPayment.resources +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.csproj.GenerateResource.cache +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.AssemblyInfoInputs.cache +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.AssemblyInfo.cs +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.csproj.CoreCompileInputs.cache +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.dll +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.pdb +C:\Users\User\Documents\cs\Exercise Starts\Chapter 10\Payment\Payment\obj\Debug\netcoreapp3.1\Payment.genruntimeconfig.cache diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.GenerateResource.cache b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.GenerateResource.cache new file mode 100644 index 0000000..50aff3b Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.csproj.GenerateResource.cache differ diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.deps.json b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.deps.json new file mode 100644 index 0000000..9bb9f82 --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.runtimeconfig.json b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.runtimeconfig.json new file mode 100644 index 0000000..fdc9c5f --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.designer.runtimeconfig.json @@ -0,0 +1,16 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "3.1.0" + }, + "additionalProbingPaths": [ + "C:\\Users\\User\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\User\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.dll b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.dll new file mode 100644 index 0000000..1dd4df3 Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.dll differ diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmCustomer.resources b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmCustomer.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmCustomer.resources differ diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmPayment.resources b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmPayment.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.frmPayment.resources differ diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.genruntimeconfig.cache b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.genruntimeconfig.cache new file mode 100644 index 0000000..bf5f66e --- /dev/null +++ b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.genruntimeconfig.cache @@ -0,0 +1 @@ +b5d840977d34059fb63b8294f9e6220768ffad43b277f827558d6f8441ac1791 diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/Payment.pdb b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.pdb new file mode 100644 index 0000000..b7bd900 Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/Payment.pdb differ diff --git a/payment/Payment/obj/Debug/netcoreapp3.1/apphost.exe b/payment/Payment/obj/Debug/netcoreapp3.1/apphost.exe new file mode 100644 index 0000000..a4169e4 Binary files /dev/null and b/payment/Payment/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/payment/Payment/obj/Payment.csproj.nuget.dgspec.json b/payment/Payment/obj/Payment.csproj.nuget.dgspec.json new file mode 100644 index 0000000..064ad5c --- /dev/null +++ b/payment/Payment/obj/Payment.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj": {} + }, + "projects": { + "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj", + "projectName": "Payment", + "projectPath": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/payment/Payment/obj/Payment.csproj.nuget.g.props b/payment/Payment/obj/Payment.csproj.nuget.g.props new file mode 100644 index 0000000..af28506 --- /dev/null +++ b/payment/Payment/obj/Payment.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\User\.nuget\packages\ + PackageReference + 6.8.0 + + + + + \ No newline at end of file diff --git a/payment/Payment/obj/Payment.csproj.nuget.g.targets b/payment/Payment/obj/Payment.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/payment/Payment/obj/Payment.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/payment/Payment/obj/project.assets.json b/payment/Payment/obj/project.assets.json new file mode 100644 index 0000000..8c760f8 --- /dev/null +++ b/payment/Payment/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [] + }, + "packageFolders": { + "C:\\Users\\User\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj", + "projectName": "Payment", + "projectPath": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/payment/Payment/obj/project.nuget.cache b/payment/Payment/obj/project.nuget.cache new file mode 100644 index 0000000..1948e93 --- /dev/null +++ b/payment/Payment/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "wFY3TiQ58fYyaftEGNHtPWatJQSc+w3WO6uZ380jknoSvqTlwpzUBHOkDfF00J/ugmKgacQa6dlf1EJUn9M0UQ==", + "success": true, + "projectFilePath": "C:\\Users\\User\\Documents\\cs\\Exercise Starts\\Chapter 10\\Payment\\Payment\\Payment.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file -- cgit 1.4.1