Adding folder for forms for cleanup

This commit is contained in:
Spudnut2000 2025-06-26 21:10:19 -05:00
parent 48a2bd21de
commit d0df6b2593
20 changed files with 12 additions and 9 deletions

View File

@ -14,22 +14,25 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Update="DashboardForm.cs"> <Compile Update="Forms\AddOrUpdateAppointmentForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="CustomersForm.cs"> <Compile Update="Forms\AddUpdateCustomerForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="AddUpdateCustomerForm.cs"> <Compile Update="Forms\AppointmentsForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="AppointmentsForm.cs"> <Compile Update="Forms\CustomersForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="AddOrUpdateAppointmentForm.cs"> <Compile Update="Forms\DashboardForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="ReportsForm.cs"> <Compile Update="Forms\LoginForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\ReportsForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
</ItemGroup> </ItemGroup>

View File

@ -159,12 +159,12 @@ public partial class ReportsForm : Form
private class CustomersByCity private class CustomersByCity
{ {
public string? City { get; set; } public string? City { get; set; }
public int UserCount { get; set; } public int Count { get; set; }
public CustomersByCity(string? city, int userCount) public CustomersByCity(string? city, int count)
{ {
City = city; City = city;
UserCount = userCount; Count = count;
} }
} }