using System; namespace HeuristicLab.Services.Optimization.Billing.Interfaces { public interface ITransactionManager { void UseTransaction(Action call, bool repeatableRead = false, bool longRunning = false); T UseTransaction(Func call, bool repeatableRead = false, bool longRunning = false); } }