19 lines
415 B
C#
19 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BeWo.Service.Core;
|
|
using BeWo.Service.Plugins;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts;
|
|
using Utils = BS.Shared.Core.Utils;
|
|
|
|
namespace Akgg.Export
|
|
{
|
|
public class CustomDataExporter : DataExporter
|
|
{
|
|
public override QueryDC CreateQuery(QueryDC query)
|
|
{
|
|
return ExactExporter.CreateQuery(query);
|
|
}
|
|
}
|
|
}
|