export abstract class AcCsvParser<T> {
public abstract paymentProviderName: string;
public abstract getTransactions(): Promise<T[]>;
}