Package net.vaultnet.learn.service

Source Code of net.vaultnet.learn.service.DepartmentDaoService

package net.vaultnet.learn.service;

import java.util.List;

import net.vaultnet.learn.dao.DepartmentDao;
import net.vaultnet.learn.dao.DepartmentNoDBdao;

public class DepartmentDaoService implements DepartmentService {
    private DepartmentDao dao;

    public DepartmentDaoService() {
        this.dao = new DepartmentNoDBdao();
    }

    public List getAllDepartments() {
        return dao.getAllDepartments();
    }
}
TOP

Related Classes of net.vaultnet.learn.service.DepartmentDaoService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.