SetActivityDeadLine() public method

Sets the activity dead line.
public SetActivityDeadLine ( ) : DataTable
return System.Data.DataTable
Beispiel #1
0
 /// <summary>
 /// Sets the activity dead line.
 /// </summary>
 /// <returns></returns>        
 public string SetActivityDeadLine()
 {
     DataTable returnTable = new DataTable();
     Atul_v1Data adb = new Atul_v1Data();
     returnTable = adb.SetActivityDeadLine();
     return JsonMethods.GetJSONString(returnTable);
 }