CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptBusinessLogic/BusinessLogics/ReportLoad.cs

37 lines
1.1 KiB
C#
Raw Normal View History

using BankYouBankruptContracts.BusinessLogicsContracts;
using DocumentFormat.OpenXml.ExtendedProperties;
using Org.BouncyCastle.Asn1.Ocsp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Metadata;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptBusinessLogic.BusinessLogics
{
public class ReportLoad : IReportLoad
{
public byte[] LoadFile(bool whoRequested)
{
string pdfFilePath;
//если пришло true, то загружаем отчёт клиента
if (whoRequested)
{
pdfFilePath = "C:\\Users\\Programmist73\\Desktop\\Практика\\2-й курс\\4-й семестр\\CourseWork_BankYouBankrupt\\BankYouBankrupt\\BankYouBankruptRestAPI\\Отчёт_поартам.pdf";
}
else
{
pdfFilePath = "C:\\Users\\Programmist73\\Desktop\\Практика\\2-й курс\\4-й семестр\\CourseWork_BankYouBankrupt\\BankYouBankrupt\\BankYouBankruptRestAPI\\Отчёт_по_счетам.pdf";
}
byte[] bytes = System.IO.File.ReadAllBytes(pdfFilePath);
System.IO.File.WriteAllBytes(pdfFilePath, bytes);
return bytes;
}
}
}