コード例 #1
0
        public string InsertPagePerformance(PagePerformance objPerformance)
        {
            TrackerModule objTracker = new TrackerModule();

            objTracker.InsertPagePerformance(objPerformance);
            return("Success");
        }
コード例 #2
0
        public string UserActivityPerformance(UserActivityPerformance objActPer)
        {
            TrackerModule objTracker = new TrackerModule();

            objTracker.InsertUserActivity(objActPer.Activity);
            objTracker.InsertPagePerformance(objActPer.Performance);
            return("Success");
        }