using BinaryDad.AggregateDal.Models;
namespace BinaryDad.AggregateDal
{
public interface ISettlementAttemptDataAccess
{
///
/// Adds a new settlement attempt
///
///
/// Whether the add operation was successful
bool AddAttempt(SettlementAttempt attempt);
///
/// Retrieves an existing settlement attempt
///
///
///
SettlementAttempt GetAttempt(int recordId);
}
}