ATUL_v1.AtulBusinessLogic.GetAllActivity C# (CSharp) Method

GetAllActivity() public method

Gets all activity.
public GetAllActivity ( ) : string
return string
        public string GetAllActivity()
        {
            DataTable returnTable = new DataTable();
            Atul_v1Data adb = new Atul_v1Data();
            returnTable = adb.GetAllActivity();
            return JsonMethods.GetJSONString(returnTable);
        }

Usage Example

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