GetAllActivity() 공개 메소드

Gets all activity.
public GetAllActivity ( ) : DataTable
리턴 System.Data.DataTable
예제 #1
0
 /// <summary>
 /// Gets all activity.
 /// </summary>
 /// <returns></returns>        
 public string GetAllActivity()
 {
     DataTable returnTable = new DataTable();
     Atul_v1Data adb = new Atul_v1Data();
     returnTable = adb.GetAllActivity();
     return JsonMethods.GetJSONString(returnTable);
 }