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

GetAllProcessSubProcessActivity() 공개 메소드

Gets all process sub process activity. TODO: New proc needed to get a subprocess's activities
public GetAllProcessSubProcessActivity ( ) : string
리턴 string
        public string GetAllProcessSubProcessActivity()
        {
            DataTable returnTable = new DataTable();
            Atul_v1Data adb = new Atul_v1Data();
            returnTable = adb.GetAllProcessSubProcessActivity();
            return JsonMethods.GetJSONString(returnTable);
        }

Usage Example

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