Made refill data tier.

This commit is contained in:
Adam McCane 2024-02-14 20:05:13 -05:00
parent 02ad8d2c26
commit ab73eed578
4 changed files with 25 additions and 3 deletions

View File

@ -90,6 +90,7 @@
</Compile> </Compile>
<Compile Include="Program.cs" /> <Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="refillDataTier.cs" />
<EmbeddedResource Include="frmAbout.resx"> <EmbeddedResource Include="frmAbout.resx">
<DependentUpon>frmAbout.cs</DependentUpon> <DependentUpon>frmAbout.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>

View File

@ -8,6 +8,11 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using Microsoft.VisualBasic;
using System.Configuration;
using System.Collections;
using System.Data.SqlClient;
namespace Louis__Pharmacy_CNSA212_FP namespace Louis__Pharmacy_CNSA212_FP
{ {
public partial class frmInfo : Form public partial class frmInfo : Form

View File

@ -8,6 +8,11 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using Microsoft.VisualBasic;
using System.Configuration;
using System.Collections;
using System.Data.SqlClient;
namespace Louis__Pharmacy_CNSA212_FP namespace Louis__Pharmacy_CNSA212_FP
{ {
public partial class frmRefill : Form public partial class frmRefill : Form
@ -24,9 +29,7 @@ namespace Louis__Pharmacy_CNSA212_FP
private void frmRefill_Load(object sender, EventArgs e) private void frmRefill_Load(object sender, EventArgs e)
{ {
// TODO: This line of code loads data into the 'finalProjectOfficialPharmacyDataSet.REFILLS' table. You can move, or remove it, as needed.
//this.rEFILLSTableAdapter.Fill(this.finalProjectOfficialPharmacyDataSet.REFILLS);
} }
} }
} }

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Louis__Pharmacy_CNSA212_FP
{
class refillDataTier
{
}
}