Compare commits

..

No commits in common. "9831008fc4120dc4ee726522d2700912ab6b1904" and "eda158bcabfba2ffcdcc289420e56e04441d80e3" have entirely different histories.

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<ReportTransfersViewModel> OperationRequests
public List<ReportOperationsRequestsViewModel> 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<ReportOperationsRequestsViewModel> Requests { get; set; } = new();
public List<ReportRequestsViewModel> Requests { get; set; } = new();
}
}

View File

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

View File

@ -1,4 +1,4 @@
using BankBusinessLogic.OfficePackage.HelperEnums;
using ComputersShopBusinessLogic.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<ReportTransfersViewModel> Requests { get; set; } = new();
public List<RequestViewModel> Requests { get; set; } = new();
}
}