This commit is contained in:
Кашин Максим 2023-05-18 15:31:32 +04:00
commit f4d8862d0d

View File

@ -104,7 +104,7 @@ namespace HotelBusinessLogic.BusinessLogics
_saveToExcel.CreateReport(new ExcelInfoOrganiser _saveToExcel.CreateReport(new ExcelInfoOrganiser
{ {
FileName = model.FileName, FileName = model.FileName,
Title = "Список брони по конференции", Title = "Список конференций",
MemberConferences = GetMemberConference(model.Ids) MemberConferences = GetMemberConference(model.Ids)
}); });
} }
@ -114,7 +114,7 @@ namespace HotelBusinessLogic.BusinessLogics
_saveToWord.CreateDoc(new WordInfoOrganiser _saveToWord.CreateDoc(new WordInfoOrganiser
{ {
FileName = model.FileName, FileName = model.FileName,
Title = "Список брони по конференции", Title = "Список конференций",
MemberConferences = GetMemberConference(model.Ids) MemberConferences = GetMemberConference(model.Ids)
}) ; }) ;
} }