+ ссылка

This commit is contained in:
Софья Якобчук 2024-05-26 09:48:34 +04:00
parent 43039c451d
commit f5abf30989
5 changed files with 1 additions and 21 deletions

View File

@ -14,6 +14,7 @@
<ItemGroup>
<ProjectReference Include="..\LawCompanyContracts\LawCompanyContracts.csproj" />
<ProjectReference Include="..\LawCompanyDatabaseImplement\LawCompanyDatabaseImplement.csproj" />
<ProjectReference Include="..\LawCompanyDataModels\LawCompanyDataModels.csproj" />
</ItemGroup>

View File

@ -8,9 +8,5 @@ namespace LawCompanyContracts.ViewModels
{
internal class ReportClientCaseViewModel
{
public string ClientSurname { get; set; } = string.Empty;
public string ClientName { get; set; } = string.Empty;
public string ClientPatronymic { get; set; } = string.Empty;
public List<Tuple<string, DateTime>> CaseBookings { get; set; } = new();
}
}

View File

@ -8,13 +8,5 @@ namespace LawCompanyContracts.ViewModels
{
internal class ReportClientsViewModel
{
public int Id { get; set; }
public DateTime StartDate { get; set; }
public string ClientSurname { get; set; } = string.Empty;
public string ClientName { get; set; } = string.Empty;
public string ClientPatronymic { get; set; } = string.Empty;
public string CaseName { get; set; } = string.Empty;
public string HearingName { get; set; } = string.Empty;
public double HearingPrice { get; set; }
}
}

View File

@ -8,7 +8,5 @@ namespace LawCompanyContracts.ViewModels
{
internal class ReportLawyerHearingViewModel
{
public string LawyerName { get; set; } = string.Empty;
public List<Tuple<string, double>> Visits { get; set; } = new();
}
}

View File

@ -8,12 +8,5 @@ namespace LawCompanyContracts.ViewModels
{
internal class ReportLawyersViewModel
{
public int Id { get; set; }
public string HearingName { get; set; } = string.Empty;
public double HearingPrice { get; set; }
public string CaseName { get; set; } = string.Empty;
public DateTime? StartDate { get; set; }
public string LawyerName { get; set; } = string.Empty;
public double LawyerPrice { get; set; }
}
}