ATUL_v1.AtulBusinessLogic.FlexFieldGet C# (CSharp) Method

FlexFieldGet() public method

get the Flexfield.
public FlexFieldGet ( ) : string
return string
        public string FlexFieldGet()
        {
            DataTable returnTable = new DataTable();
            Atul_v1Data adb = new Atul_v1Data();
            returnTable = adb.FlexFieldGet();
            return JsonMethods.GetJSONString(returnTable);
        }

Usage Example

Beispiel #1
0
 public string FlexFieldGet()
 {
     string d = string.Empty;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     d = adb.FlexFieldGet();
     return d;
 }
AtulBusinessLogic