aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/ExecuteSqlResponse.cs
blob: 2db90a33604e7388607402919bcf651d23ffcdcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Shared.SQL
{
    public class ExecuteSqlResponse
    {
        public int AffectedRecords { get; set; }
        public RemoteSqlDataSet DataSet { get; set; }

        public ExecuteSqlResponse()
        {
            DataSet = new RemoteSqlDataSet();
        }
    }
}
/// Occurs when the <see cref="Input"/> property has changed. /// </summary> event EventHandler<InputChangedEventArgs<TIn>> InputChanged; /// <summary> /// Gets the connected input <see cref="IGraphComponent"/>. /// </summary> TIn Input { get; } /// <summary> /// Connects the specified component output to this component input. /// </summary> /// <param name="component">The component.</param> /// <param name="fromInput">Specifies whether this call was made from a <see cref="TIn"/> component.</param> void ConnectInput(TIn component, bool fromInput = false); /// <summary> /// Disconnects this component input from the current connected <see cref="Input"/> <see cref="IGraphComponent"/>. /// </summary> /// <param name="fromInput">Specifies whether this call was made from a <see cref="TIn"/> component.</param> void DisconnectInput(bool fromInput = false); } }