Merge branch 'ManagersApp' of https://git.is.ulstu.ru/Artyom_Yashin/PIbd-23_Yashin_A_Zakharov_R_CourseWork_Bank into ManagersApp
This commit is contained in:
commit
7fff7351f4
@ -46,8 +46,11 @@ namespace BankBusinessLogic.BusinessLogic
|
||||
_saveToWord.CreateDoc(new WordInfo
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список кузнечных изделий",
|
||||
Manufactures = _ManufactureStorage.GetFullList()
|
||||
Title = "Список заявок",
|
||||
Requests = CreateReportRequests(new AccountSearchModel
|
||||
{
|
||||
SelectedAccountIds = model.SelectedAccountIds,
|
||||
}),
|
||||
});
|
||||
}
|
||||
#endregion
|
||||
|
@ -12,5 +12,6 @@ namespace BankBusinessLogic.OfficePackage.DocumentModels
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public List<ReportTransfersViewModel> Transfers { get; set; } = new();
|
||||
}
|
||||
public List<ReportRequestsViewModel> Requests { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -11,5 +11,6 @@ namespace BankContracts.BindingModels
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
public DateTime? DateFrom { get; set; }
|
||||
public DateTime? DateTo { get; set; }
|
||||
public List<int>? SelectedAccountIds { get; set; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user