ATUL_v1.AtulBusinessLogic.FlexFieldGet C# (CSharp) 메소드

FlexFieldGet() 공개 메소드

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

Usage Example

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