Чучуть поменял

This commit is contained in:
Artyom_Yashin 2024-05-26 14:35:21 +04:00
parent c9922e9522
commit db4ddd72ef
5 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ namespace BankBusinessLogic.OfficePackage.HelperModels
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportOperationsRequestsViewModel> OperationRequests
public List<ReportTransfersViewModel> OperationRequests
{
get;
set;

View File

@ -13,6 +13,6 @@ namespace BankBusinessLogic.OfficePackage.HelperModels
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportRequestsViewModel> Requests { get; set; } = new();
public List<ReportOperationsRequestsViewModel> Requests { get; set; } = new();
}
}

View File

@ -1,4 +1,4 @@
using ComputersShopBusinessLogic.OfficePackage.HelperEnums;
using BankBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@ -1,4 +1,4 @@
using ComputersShopBusinessLogic.OfficePackage.HelperEnums;
using BankBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@ -11,6 +11,6 @@ namespace BankBusinessLogic.OfficePackage.HelperModels
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<RequestViewModel> Requests { get; set; } = new();
public List<ReportTransfersViewModel> Requests { get; set; } = new();
}
}