Example #1
0
        public IEnumerable <AuditTrail> GetByLoginID(string loginID, DateTime fromDate, DateTime toDate)
        {
            var repo = new AuditTrailRepository();

            return(repo.GetByLoginID(loginID, fromDate, toDate));
        }
Example #2
0
        public List <AuditTrail> GetByAction(string action, DateTime fromDate, DateTime toDate)
        {
            var repo = new AuditTrailRepository();

            return(repo.GetByAction(action, fromDate, toDate));
        }
Example #3
0
        public IEnumerable <AuditTrail> GetByTable(string tablename, DateTime fromDate, DateTime toDate)
        {
            var repo = new AuditTrailRepository();

            return(repo.GetByTable(tablename, fromDate, toDate));
        }
Example #4
0
        public IEnumerable <AuditTrail> GetAuditTrailByTab(AuditAction action)
        {
            var repo = new AuditTrailRepository();

            return(repo.GetAuditTrailByTab(action));
        }
Example #5
0
        public IEnumerable <AuditTrail> GetByDate(DateTime fromDate, DateTime toDate)
        {
            var repo = new AuditTrailRepository();

            return(repo.GetByDate(fromDate, toDate));
        }
Example #6
0
        public IEnumerable <AuditTrail> Get()
        {
            var repo = new AuditTrailRepository();

            return(repo.Get());
        }
Example #7
0
        public AuditTrail Get(long id)
        {
            var repo = new AuditTrailRepository();

            return(repo.Get(id));
        }