Add Helpers/Export/

This commit is contained in:
2023-08-29 15:25:09 +02:00
parent 3f09e62c74
commit a96a05d3de
5 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using Elwig.Models;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Elwig.Helpers.Export {
public class Ebics : IBankingProvider {
public string FileExtension => "xml";
public Task Export(string filename, int avnr, IEnumerable<Member> members) {
throw new NotImplementedException();
}
}
}