internal static DataTable ExecuteListDataTable(SmartObjectClientServerWrapper clientServer, SmartObject smartObject, ExecuteListOptions options = null)
        {
            clientServer.ThrowIfNull("clientServer");

            if (options == null)
            {
                options = new ExecuteListOptions();
            }

            try
            {
                return(clientServer.ExecuteListDataTable(smartObject, options));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.GetExceptionMessage());
            }
        }
Example #2
0
 public virtual DataTable ExecuteListDataTable(SmartObject smartObject, ExecuteListOptions options)
 {
     return(_serviceClientServer.ExecuteListDataTable(smartObject, options));
 }
Example #3
0
 public virtual SmartObjectList ExecuteList(SmartObject smartObject, ExecuteListOptions options)
 {
     return(_serviceClientServer.ExecuteList(smartObject, options));
 }
 public static DataTable ExecuteListDataTable(SmartObjectClientServer clientServer, SmartObject smartObject, ExecuteListOptions options = null)
 {
     return(ExecuteListDataTable(WrapperFactory.Instance.GetSmartObjectClientServerWrapper(clientServer), smartObject, options));
 }