Ejemplo n.º 1
0
 public Task <object> ExecuteCommand(
     CodeTorch.Core.DataConnection connection,
     CodeTorch.Core.DataCommand dataCommand,
     List <CodeTorch.Core.ScreenDataCommandParameter> parameters,
     string commandText,
     Action <DataTable> successAction,
     Action <Exception> errorAction
     )
 {
     return(Exec(connection, dataCommand, parameters, commandText));
 }
Ejemplo n.º 2
0
 public Task <DataTable> GetData(
     CodeTorch.Core.DataConnection connection,
     CodeTorch.Core.DataCommand dataCommand,
     List <CodeTorch.Core.ScreenDataCommandParameter> parameters,
     string commandText,
     Action <DataTable> successAction,
     Action <Exception> errorAction
     )
 {
     return(GetDataTable(connection, dataCommand, parameters, commandText, successAction, errorAction));
 }
Ejemplo n.º 3
0
 public Task <XDocument> GetXmlData(
     CodeTorch.Core.DataConnection connection,
     CodeTorch.Core.DataCommand dataCommand,
     List <CodeTorch.Core.ScreenDataCommandParameter> parameters,
     string commandText,
     Action <DataTable> successAction,
     Action <Exception> errorAction
     )
 {
     // TODO: Implement this method
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 public void RefreshSchema(CodeTorch.Core.DataConnection connection, CodeTorch.Core.DataCommand dataCommand)
 {
     // TODO: Implement this method
     // throw new NotImplementedException();
 }