25 lines
875 B
C#
25 lines
875 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using gehGassiApp.Core.Interfaces.Synchronization;
|
|
using gehGassiApp.Domain.Common;
|
|
using gehGassiApp.Domain.Payment;
|
|
|
|
namespace gehGassiApp.Core.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Schnittstellenbeschreibung für einen Service der die Verwaltung von Transaktionsgebühren realisiert
|
|
/// </summary>
|
|
public interface ITransactionFeeService : IService<TransactionFee>, ISyncPushPullService<TransactionFee>
|
|
{
|
|
/// <summary>
|
|
/// Gibt eine Transaktionsgebühr für einen bestimmten Zahlungstyp zurück
|
|
/// </summary>
|
|
/// <param name="payinType">Zahlungstyp</param>
|
|
/// <returns>Transaktionsgebühr oder null, wenn nicht gefunden</returns>
|
|
Task<TransactionFee> GetAsync(PayInType payinType);
|
|
}
|
|
}
|