blob: 34ab74a688dee89d42d1997225e5b1e2b9ab0177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Shared.SQL;
namespace Tango.FSE.Common.SQL
{
public class RemoteSqlCommandResult
{
public int LocalAffectedRecords { get; set; }
public RemoteSqlDataSet LocalDatSet { get; set; }
public bool HasLocalError { get; set; }
public String LocalError { get; set; }
public int GlobalAffectedRecords { get; set; }
public RemoteSqlDataSet GLobalDataSet { get; set; }
public bool HasGlobalError { get; set; }
public String GlobalError { get; set; }
public RemoteSqlCommandResult()
{
LocalDatSet = new RemoteSqlDataSet();
GLobalDataSet = new RemoteSqlDataSet();
}
}
}
|