init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
31
Sda.DataProvider/CommandExecutedEventArgs.cs
Normal file
31
Sda.DataProvider/CommandExecutedEventArgs.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue