public IEnumerable <User> GetAll()
        {
            var users = this.connection.Query <User>(UserQuery.GetAll(), this.transaction);

            return(users);
        }