Exemplo n.º 1
0
 public static UIGridDialog Create(UIGridDialog.Header header, System.Data.DataTable data, bool isReturn)
 {
     return(new aGridDialog(header, data)
     {
         IsReturnValue = isReturn
     });
 }
Exemplo n.º 2
0
 public static UIGridDialog Create(UIGridDialog.Header header, Array data, bool isReturn)
 {
     return(new aGridDialog(header, data)
     {
         IsReturnValue = isReturn
     });
 }
Exemplo n.º 3
0
 public static UIGridDialog Create(UIGridDialog.Header header, Array data)
 {
     return(new aGridDialog(header, data));
 }
Exemplo n.º 4
0
 public static UIGridDialog Create(UIGridDialog.Header header, System.Data.DataTable data)
 {
     return(new aGridDialog(header, data));
 }