namespace Dapper { partial class SqlMapper { /// /// Extends IDynamicParameters with facilities for executing callbacks after commands have completed /// public interface IParameterCallbacks : IDynamicParameters { /// /// Invoked when the command has executed /// void OnCompleted(); } } }