FlexFieldStorageGetByID() 공개 메소드

get the flexfield by ID.
public FlexFieldStorageGetByID ( long AtulFlexFieldStorageID ) : string
AtulFlexFieldStorageID long The atul flex field storage ID.
리턴 string
예제 #1
0
 public string FlexFieldStorageGetByID(string AtulFlexFieldStorageID)
 {
     string d = string.Empty;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     d = adb.FlexFieldStorageGetByID(Convert.ToInt64(AtulFlexFieldStorageID));
     return d;
 }