FlexFieldStorageGet() public method

Get the flexfield storage.
public FlexFieldStorageGet ( ) : DataTable
return System.Data.DataTable
コード例 #1
0
ファイル: AtulBusinessLogic.cs プロジェクト: godaddy/ATUL
 /// <summary>
 /// Get the flexfield storage.
 /// </summary>
 /// <returns></returns>
 public string FlexFieldStorageGet()
 {
     DataTable returnTable = new DataTable();
     Atul_v1Data adb = new Atul_v1Data();
     returnTable = adb.FlexFieldStorageGet();
     return JsonMethods.GetJSONString(returnTable);
 }