ATUL_v1.AtulBusinessLogic.GetAllProcessSubProcessActivity C# (CSharp) Method

GetAllProcessSubProcessActivity() public method

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

Usage Example

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