using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Exports
{
///
/// 导出Excel任务接口
///
public interface IExportExcelProcess
{
///
/// 执行导出Excel数据的方法
///
/// 文件名
/// 返回文件路径
string RunExportExcelProcess(string fileName);
}
///
/// 获取导出Excel数据的处理事件
///
/// 查询条件
/// 查询数量
///
public delegate IList GetExportDataEvent(object condition,int queryCount);
}