package integration.anyframe.services.corebasis;
import org.springframework.stereotype.Service;

import anyframe.common.Page;
import anyframe.common.util.SearchVO;
import anyframe.core.basis.service.impl.GenericManagerImpl;

@Service("usersService")
public class UsersServiceImpl extends GenericManagerImpl<Users, String> implements UsersService {
    UsersDao usersDao;
    
    public UsersServiceImpl(UsersDao usersDao) {
        super(usersDao);
        this.usersDao = usersDao;
    }
    
    public Page getList(SearchVO searchVO) throws Exception {
         return this.usersDao.getList(searchVO);
    }   

}
