Files
elwig/Elwig/Helpers/Export/Ebics.cs

28 lines
686 B
C#

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<Transaction> data) {
throw new NotImplementedException();
}
public Task ExportAsync(IEnumerable<Transaction> data) {
throw new NotImplementedException();
}
}
}