public string InsertPagePerformance(PagePerformance objPerformance) { TrackerModule objTracker = new TrackerModule(); objTracker.InsertPagePerformance(objPerformance); return("Success"); }
public void GetPageLoadTime(string pagePath = null) { PagePerformance lstPagePerformance = null; try { lstPagePerformance = DeSerializeObject <PagePerformance>(PAGEPERFORMANCEFILEPATH); } catch { } }
public void InsertPagePerformance(PagePerformance objPagePerformance) { SerializePagePerformanceObject(objPagePerformance, PAGEPERFORMANCETEMPFILEPATH); }