using Elwig.Helpers.Billing; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Elwig.Helpers.Export { public class Ebics : IBankingExporter { public static string FileExtension => "xml"; public void Dispose() { throw new NotImplementedException(); } public ValueTask DisposeAsync() { throw new NotImplementedException(); } public void Export(IEnumerable data) { throw new NotImplementedException(); } public Task ExportAsync(IEnumerable data) { throw new NotImplementedException(); } } }