예제 #1
0
        /// <summary>
        /// Fetch Selected User Information From the Userlogs table
        /// </summary>
        /// <param name="UserID">Long UserID </param>
        /// /// <param name="CurrentDate">Date time paramenter</param>
        /// <returns>List of UserLogs of type UserLogCustom</returns>
        public List <cstAutditLog> GetUserLogAll(Guid UserID, DateTime DateOFLog)
        {
            cmbAuditLog command = new cmbAuditLog();

            return(command.GetUserLog(UserID, DateOFLog));
        }
예제 #2
0
        /// <summary>
        /// Fetch Selected User Information From the Userlogs table
        /// </summary>
        /// <param name="UserID">Long UserID </param>
        /// <returns>List of UserLogs of type UserLogCustom</returns>
        public List <cstAutditLog> GetUserLogAll(Guid UserID)
        {
            cmbAuditLog command = new cmbAuditLog();

            return(command.GetUserLog(UserID));
        }