using System; namespace SDA.DataProvider { /// /// Adatbázis-parancs végrehastása után kiváltodó esemény argumentum osztálya. /// public class CommandExecutedEventArgs : EventArgs { /// /// Létrehoz egy új objektum példányt. /// /// A párancs futási ideje /// A végrehajtás típusa public CommandExecutedEventArgs(TimeSpan executionTime, ExecutionType executionType) { ExecutionTime = executionTime; ExecutionType = executionType; } /// /// A párancs futási ideje /// public TimeSpan ExecutionTime { get; } /// /// A végrehajtás típusa /// public ExecutionType ExecutionType { get; } } }