This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

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