public string InsertPagePerformance(PagePerformance objPerformance) { TrackerModule objTracker = new TrackerModule(); objTracker.InsertPagePerformance(objPerformance); return("Success"); }
public string UserActivityPerformance(UserActivityPerformance objActPer) { TrackerModule objTracker = new TrackerModule(); objTracker.InsertUserActivity(objActPer.Activity); objTracker.InsertPagePerformance(objActPer.Performance); return("Success"); }