ATUL_v1.AtulBusinessLogic.FlexFieldStorageGet C# (CSharp) Метод

FlexFieldStorageGet() публичный Метод

Get the flexfield storage.
public FlexFieldStorageGet ( ) : string
Результат string
        public string FlexFieldStorageGet()
        {
            DataTable returnTable = new DataTable();
            Atul_v1Data adb = new Atul_v1Data();
            returnTable = adb.FlexFieldStorageGet();
            return JsonMethods.GetJSONString(returnTable);
        }

Usage Example

Пример #1
0
 public string FlexFieldStorageGet()
 {
     string d = string.Empty;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     d = adb.FlexFieldStorageGet();
     return d;
 }
AtulBusinessLogic