git_bsmd/ENI2/Report/ReportManager.cs

36 lines
763 B
C#

// Copyright (c) 2017-present schick Informatik
// Description: Former ReportService, manager class handles creation of a PDF document
// from a set of report classes
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using bsmd.database;
namespace ENI2.Report
{
class ReportManager
{
public bool Import(string filePath, MessageCore core, List<Message.NotificationClass> classes, out string readMessage)
{
bool result = false;
readMessage = "";
try
{
}
catch (Exception ex)
{
readMessage += ex.Message;
}
return result;
}
}
}