Adding folder for forms for cleanup
This commit is contained in:
parent
48a2bd21de
commit
d0df6b2593
@ -14,22 +14,25 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="DashboardForm.cs">
|
||||
<Compile Update="Forms\AddOrUpdateAppointmentForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Update="CustomersForm.cs">
|
||||
<Compile Update="Forms\AddUpdateCustomerForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Update="AddUpdateCustomerForm.cs">
|
||||
<Compile Update="Forms\AppointmentsForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Update="AppointmentsForm.cs">
|
||||
<Compile Update="Forms\CustomersForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Update="AddOrUpdateAppointmentForm.cs">
|
||||
<Compile Update="Forms\DashboardForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Update="ReportsForm.cs">
|
||||
<Compile Update="Forms\LoginForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Forms\ReportsForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
@ -159,12 +159,12 @@ public partial class ReportsForm : Form
|
||||
private class CustomersByCity
|
||||
{
|
||||
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;
|
||||
UserCount = userCount;
|
||||
Count = count;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user