16 lines
376 B
C#
16 lines
376 B
C#
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();
|
|
}
|
|
}
|
|
}
|